Chapter 26 The normal distribution

In this chapter we will look at the normal distribution.

#Let’s read in birthweight dataset and determine mean and standard deviation # #{r} #BirthWeight <- read.delim("files/BirthWeight.txt", quote="") #bw.mean <- mean(BirthWeight$Weight) #bw.sd <- sd(BirthWeight$Weight) #