The ____ function converts a vector of approximately normally distributed values into z-scores.
z is scale(x)
compute the proportion of observations that are within 2 standard deviations of the mean
mean(abs(z) < 2)
cumulative distribution function F(a)
pnorm(a, avg, s)