Enter a list of numbers to calculate the mean, variance, and standard deviation.
Standard deviation measures how spread out a data set is from its mean. Sample standard deviation divides by n−1 (Bessel's correction), while population standard deviation divides by n.
Use sample if your numbers are a subset drawn from a larger group (most common case). Use population only if your data represents the entire group you care about.
Dividing by n−1 (Bessel's correction) corrects for the bias that occurs when estimating a population's variability from a smaller sample.