Summary Statistics
Get count, mean, min, max, and percentiles for numeric columns
CSV Input
Try a sample:
Drop a CSV file here or
Only the first file is used if multiple are dropped.
The request is made directly from your browser. No proxy is used.
Summary Statistics
Paste or upload a CSV for summary statistics...
More Options
CSV Format
Input
How to Use This Tool
This tool calculates descriptive statistics for every numeric column in your CSV, similar to pandas describe(). Non-numeric columns are automatically skipped.
- Provide your CSV — Paste CSV text into the input area, drop a CSV file onto the File tab, or enter a URL on the URL tab.
- View your results — Statistics for each numeric column appear instantly in a table.
- Copy or save — Copy the results to your clipboard (tab-separated for Excel) or save as a CSV file.
FAQ
4 questionsDoes this tool upload my data?
No. It runs entirely in your browser using JavaScript. Your CSV data is never sent to a server.
Which statistics are calculated?
Count (non-empty values), mean, standard deviation (sample), min, 25th percentile, median (50th percentile), 75th percentile, and max.
Which columns are included?
Only numeric columns are included. A column is numeric if every non-empty cell contains a valid number.
How is standard deviation calculated?
It uses sample standard deviation with an n-1 denominator, the same method as pandas and most statistics software.