Last active
May 3, 2019 07:23
-
-
Save Harshit1694/86ac76c70fa00e5d1f180990f4ce0167 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Step 3 - Calculate the population mean and plot the observations | |
#___________________________________________________________________ | |
#Calculate the population mean | |
mean(data$Wall.Thickness) | |
#Plot all the observations in the data | |
hist(data$Wall.Thickness,col = "pink",main = "Histogram for Wall Thickness",xlab = "wall thickness") | |
abline(v=12.8,col="red",lty=1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment