Recently Published
Review Artikel Simulasi
Simulasi Antrian yang Efisien Secara Komputasi melalui Paket R queuecomputer
Penulis: Anthony Ebert, Paul Wu, Kerrie Mengersen, Fabrizio Ruggeri
Sumber: https://stat.paperswithcode.com/paper/computationally-efficient-simulation-of
Faceted Histogram (3x2)
#Faceted Histogram
#Set up 3x2 plotting window
par(mfrow=c(3,2))
#plots histogram of multiple columns
hist(SSMA$Avg_Daily_Usage_Hours,xlab="Average Daily Usage (Hours)", main="Average Daily Usage Hours",breaks=6, col="lightblue")
hist(SSMA$Sleep_Hours_Per_Night,xlab="Sleep Hours Per Night", main="Sleep Hours Per Night",breaks=6, col="blue")
hist(SSMA$Mental_Health_Score,xlab="Mental Health Score", main="Mental Health Score",breaks=4, col="lightgreen")
hist(SSMA$Conflicts_Over_Social_Media, xlab="Conflicts Over Social Media", main="Conflicts Over Social Media",breaks=4, col="orange")
hist(SSMA$Age, main="Age", xlab="Age",breaks=4, col="yellow")
hist(SSMA$Addicted_Score,xlab="Addicted Score", main="Addicted Score", breaks=4, col="purple")
#Reset plot layout
par(mfrow=c(1,1))