using R to work out proportions (Charlie social events e.g.)
Using original scores and distribution properties;
pnorm(charlie_events, mean = 127, sd = 40, lower.tail = FALSE)
Using z-scores and standard normal distribution;
pnorm(charlie_z, mean = 0, sd = 1, lower.tail = FALSE)