Avoidable errors
Common mistakes and how to fix them
Using the unsorted list for the median
Problem: Calling the visually central input value the median.
Why it matters: The median is positional only after the values are ordered.
Better approach: Sort first, then take the middle value or average the two middle values.
Using n for every variance
Problem: \frac{\sum(x_i-\bar{x})^2}{n}
Why it matters: That denominator treats the listed values as the full population, not as a sample estimate.
Better approach: Use n minus 1 for sample variance and N for population variance.
Reporting a forced mode
Problem: Choosing one value even when every value occurs once or several values tie.
Why it matters: A mode is determined by frequency, not by position or size.
Better approach: Report no mode when no value repeats, or report every value tied for the highest frequency.
Treating a summary as an explanation
Problem: Concluding that a large mean caused the observed spread.
Why it matters: Descriptive statistics summarize a data set but do not establish cause.
Better approach: Interpret the numerical pattern separately from the study design and subject-matter explanation.