Histogram Maker: Create a Free Histogram Online in Seconds

This free histogram maker turns a list of numbers into a clear, downloadable histogram in seconds. Paste or type your data below, set the number of bins, and read off the distribution’s shape, a full frequency table, and summary statistics — all in your browser, with nothing uploaded.

40 values loaded. Press Make histogram.
Count (n)
Min
Max
Mean
Median
Std dev
Free tool by mlforbeginners.com · embed it: <iframe src="https://mlforbeginners.com/histogram-maker/"></iframe>

How to make a histogram with this tool

A histogram is the fastest way to see the shape of your data: where values cluster, how spread out they are, and whether the distribution is symmetric, skewed, or has outliers. To use this free histogram maker, paste or type your numbers in the box above (separated by commas, spaces, or new lines), press Make histogram, and the chart, summary statistics, and a full frequency table appear instantly. Nothing is uploaded — everything runs in your browser.

What the histogram shows

Each bar is a bin (a range of values), and its height is the frequency — how many data points fall in that range. Reading the bars left to right tells you the story of your data:

  • Symmetric / bell-shaped — values cluster in the middle (a normal-like distribution).
  • Right-skewed — a long tail of high values pulls the mean above the median.
  • Left-skewed — a long tail of low values.
  • Bimodal — two peaks, often a sign of two mixed groups.

Choosing the number of bins

Too few bins hide the shape; too many make it noisy. By default this tool uses Sturges’ rule (\( k = \lceil \log_2 n \rceil + 1 \)), a solid starting point. Untick Auto bins and drag the slider to explore other bin counts — a good histogram is one where the overall shape is clear but not jagged.

Histogram vs. bar chart

They look similar but answer different questions. A histogram shows the distribution of one numeric variable, so the bars touch (the x-axis is a continuous number line). A bar chart compares categories (like sales by region), so the bars have gaps. If your x-axis is numbers, you want a histogram.

Why histograms matter in machine learning

Before training any model, data scientists plot a histogram of every feature. It reveals skew that may need a log transform, outliers that distort the mean, and whether a feature is roughly normal — all of which affect scaling, model choice, and accuracy. The same chart underpins understanding the normal distribution, standard deviation, and interquartile range.

When should you use a histogram?

Reach for a histogram whenever you want to understand a single numeric variable before doing anything else with it — checking exam scores, sensor readings, response times, prices, or the residuals left over from a model. Because it reveals the shape, center, spread, and any outliers at a single glance, the histogram is one of the first charts taught in any statistics course and one of the most-used plots in everyday data science. It is also the quickest way to spot skew or a second hidden peak that a mean and standard deviation alone would never reveal. For the formal definition and a deeper history of the chart, see the overview of the histogram on Wikipedia.

Frequently asked questions

How do I read a histogram? Each bar covers a range of values (a bin); its height is how many data points fall in that range. Tall bars are common values; the overall outline shows the distribution’s shape.

How many bins should a histogram have? There is no single rule, but Sturges’ formula \( k = \lceil \log_2 n \rceil + 1 \) or roughly the square root of the sample size are common starting points. Adjust until the shape is clear without being jagged.

What is the difference between a histogram and a bar graph? A histogram displays the distribution of a continuous numeric variable with touching bars; a bar graph compares separate categories with gaps between bars.

Is my data uploaded anywhere? No. All calculations happen locally in your browser, so your data never leaves your device.

Scroll to Top