What is the R code you would use to calculate the probability that another county had more cases than Orange County (178 cases) without using the z-score?
a) probnorm(178, mean, sd, lower.tail = FALSE)
b) probnorm(178, mean, sd, upper.tail = TRUE)
c) pnorm(178, mean, sd, lower.tail = FALSE)
d) pnorm(178, mean, sd, upper.tail = TRUE)