Category
Statistical Chart Makers
Paste a column, get a chart you can download — plus the numbers behind it, because a picture nobody can read the values off is only half a tool.
Which chart for which job
One numeric variable, and you want its shape: a histogram for more than about thirty values, a stem-and-leaf plot for fewer — it keeps the original digits — and a box plot when you need to compare several groups at once.
Two numeric variables: a scatter plot, every time. It is the only chart that shows the relationship rather than a summary of it.
Categories to compare: a bar chart, sorted by size unless the categories have a natural order. A pie chart works only for parts of one whole, and only with a handful of slices.
A sequence over time: a line graph. The line implies the space between points means something, which is true for time and false for categories.
A matrix of values: a heatmap, on a single-hue scale so that darker always means larger.
Three rules these tools enforce
Bars start at zero. Truncating the axis of a bar chart is the most common way a chart misleads, and it is not offered here.
No dual axes. Two measures on two y-scales let you place the crossing point anywhere you like. Two charts, or one indexed to a common base, say the same thing honestly.
Colour is never the only channel. Every chart ships a data table, direct labels where they fit, and a colour order chosen to stay distinguishable for the most common forms of colour-vision deficiency.
Downloading
Every chart draws to a canvas, so you can right-click and save it, or use the download button below the figure for a PNG. Nothing is uploaded to produce it — the drawing happens in your browser.
The 8 calculators in this category
- Bar Chart MakerMake a bar chart from labelled data, vertical or horizontal, sorted or in your own order, with the value table, each category's share and a PNG to download.
- Pie Chart MakerMake a pie or donut chart from labelled data, with each slice's percentage and angle, a value table and a PNG download — and honest advice about when a bar chart is better.
- Line Graph MakerPlot one or several series over time from pasted columns, with direct labels, a data table and a PNG download.
- Box Plot MakerMake a box and whisker plot from pasted data, one group or several, with the five-number summary, outliers marked, quartile method stated and a PNG to download.
- Scatter Plot MakerMake a scatter plot from pasted pairs, with an optional least-squares line of best fit, the correlation, R², the data table and a PNG download.
- Histogram MakerCreate a histogram from pasted data with your choice of bin count, Sturges, Rice, square-root and Freedman-Diaconis suggestions, an optional normal overlay, the frequency table and a PNG download.
- Stem and Leaf Plot MakerGenerate a stem-and-leaf plot from pasted data, with a choice of leaf unit, optional split stems, the full table and the distribution drawn beside it.
- Heatmap MakerTurn a pasted matrix into a heatmap with a single-hue sequential colour scale, values printed in the cells, row and column totals and a PNG download.
Questions people ask
How many bins should my histogram have?
Sturges' rule (⌈log₂n⌉ + 1) is the usual default and what most software uses. Freedman-Diaconis is better for skewed or heavy-tailed data. The histogram maker shows what each rule suggests and lets you override it — try two or three before concluding anything about the shape.
Why does my box plot's whisker not reach the smallest value?
Whiskers stop at the last value within 1.5 × IQR of the box. Anything beyond that is drawn as a separate point, so the whisker end is the minimum inside the fence, not the minimum of the data.
Can I download the chart?
Yes — every chart has a download button that saves a PNG, and right-click to save works too. If a download is blocked by your browser, right-clicking the image is the reliable route.