Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
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?