CSV Statistics

Paste a CSV / TSV / pipe-delimited file (or one number per line) and see per-column summary statistics — count, mean, median, mode, variance, stddev, quartiles, IQR, outliers, skewness, kurtosis — plus a histogram. Nothing leaves your browser.

Options

Resolved from the parsed header.

Summary

Paste data to compute statistics.

Histogram

Histogram appears here once stats are available.

What do these numbers mean?
  • count — number of cells that parsed as finite numbers.
  • missing — empty cells plus cells that failed to parse (samples listed in Warnings).
  • mean — arithmetic average. median — the middle value (Q2).
  • mode — the most frequent value (smallest of ties), with its frequency.
  • harmonic / geometric mean — defined only for strictly positive values.
  • variance / stddev — sample (n − 1, Bessel-corrected) and population (n).
  • Q1 / Q3 / IQR — first and third quartiles with linear interpolation; interquartile range.
  • outlier count — values strictly outside [Q1 − 1.5·IQR, Q3 + 1.5·IQR] (Tukey fences).
  • skewness — Fisher–Pearson biased moment coefficient (≈ 0 for symmetric data).
  • excess kurtosis — fourth standardised moment minus 3 (≈ 0 for normal data).