Statistics Calculator
Paste a list of numbers and get the mean, median, mode, standard deviation, quartiles, and more. Separate values with commas, spaces, or new lines. It all runs in your browser.
Paste a list of numbers and get the mean, median, mode, standard deviation, quartiles, and more. Separate values with commas, spaces, or new lines. It all runs in your browser.
Type or paste your numbers, separated however you like - commas, spaces, tabs, or one per line all work. The summary updates as you type. Mean is the plain average, median is the middle value once the list is sorted, and mode is the value (or values) that show up most often. If nothing repeats, there's no mode.
Standard deviation and variance come in two flavors. Use the sample version (it divides by n - 1) when your numbers are a sample drawn from a larger group, which is the usual case. Use the population version (it divides by n) when your list is the entire group you care about. The sample figures need at least two values, so they show a dash for a single number.
Q1 is the value a quarter of the way through the sorted list and Q3 is three quarters of the way. The interquartile range (IQR) is Q3 minus Q1, the spread of the middle half of your data. Together with the min, median, and max they make up the five-number summary that box plots are built on. Quartiles here use the exclusive-median method.