This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Your file has been submitted successfully. We’re processing it now - please check back in a few minutes to view your report.
Used the visual R code below to generate a PunchCard chart for visualizing ingestion of files on two systems.
Since, I had to replace the visual with a standard Power Bi visual + DAX calculations
Prerequisite
MRO or any other flavour of R is a must.
Please could you post R script?
For some reason the upload tool has failed multiple times. Try the code below
par(mar=c(4,4,0,0))
par(oma=c(0,0,0,0))
plot(dataset$Hour,
dataset$system,
cex=dataset$Files/(max(dataset$Files)/20),
col=rgb(144,195,212, maxColorValue=255, alpha=150),
pch=19,
xaxt="n",
yaxt="n",
ylab = "system",
xlab="hour",
bty="n",
ylim=c(0,3))
abline(v=dataset$Hour,h=dataset$system,lty=3,col="lightgrey")
axis(1, at=0:23, labels=c(0:23))
axis(2, at=1:2, labels=c("X","Y"))
Try another browser (may be "chrome").
Hello is this missing R file?