RPubs will retire in June 2027. Your existing documents will stay accessible through December 31, 2031
and Connect Cloud is the recommended home for new publishing. Read the blog post
gravatar

Suguku

Dickson Ochichi Suguku

Recently Published

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))
Boxlot
Boxplot of Exam Score by Gender
Boxplot
Boxplot of Age by Gender
Plot
Knit Document
The document is about my knit document using R Markdown.