Skip to content

Box Plot Maker & Calculator: Quartiles, IQR, and Outliers

Paste CSV or TSV data to create a box plot and calculate the five-number summary, quartiles, median, IQR, whiskers, mean, and outliers. You can analyze all rows together or compare multiple groups.

  • Calculates Q1, median, Q3, IQR, whisker endpoints, mean, and outliers
  • Draws one overall box plot or one box per category
  • Exports the chart as PNG or SVG and the statistical summary as CSV
28 rows2 columns, delimiter

Use one numeric column for the measured values and an optional categorical column for group comparisons.

departmentresponse_time
Support118
Support126
Support131
Support144
Support159
Support198

First 6 of 28 rows.

Quartiles, IQR, whiskers, and outliers

Calculated from the selected numeric field using 1.5 IQR whiskers.

GroupNMinQ1MedianQ3MaxMeanIQRWhisker lowWhisker highOutliers
Support7118128.5144178.5236158.857150118236None
Success7101116.5134154.5205140.285738101205None
Sales794105.511613318812527.594141188
Product77284.595108.5156101.28572472114156

What a box plot is and when to use one

A box plot summarizes a numeric distribution through its median, quartiles, whiskers, and potential outliers.

Use a box plot when the question is about spread and comparison:

  • how different groups vary around the median
  • whether one group has more dispersion than another
  • whether there are unusual values far from the main distribution
  • whether the distribution looks skewed or relatively balanced

If you need to see the detailed shape of a single numeric distribution, use a Histogram Maker. If you need category totals, use a Bar Chart Maker.

Which box plot settings matter most?

SettingWhat it changesWhen to use it
Group fieldSplits one distribution into multiple boxescompare departments, segments, or regions
1.5 IQR whiskersMarks likely outliers outside the standard rangebest default for analysis
Min-max whiskersExtends whiskers to the full rangeuseful when you want all extremes included
Mean pointAdds the average on top of the median summaryhelpful when mean and median differ materially

Start with grouped box plots when you need comparison. Use a single overall box when you want a quick summary of one numeric field.

Format your data for this box plot maker

The cleanest input is a table with:

  • one numeric value column
  • one optional category column for grouping

Example:

department,response_time
Support,118
Support,126
Support,131
Sales,94
Sales,102
Sales,109

Each row should represent one observed value. For related workflows, see Histogram Maker, Scatter Plot Maker, Bar Chart Maker, and Dot Plot Maker.

How does this box plot calculator compute quartiles and outliers?

The calculator sorts each group from low to high and uses linear interpolation to calculate Q1, the median, and Q3. It then calculates:

  • IQR = Q3 - Q1
  • lower outlier fence: Q1 - 1.5 × IQR
  • upper outlier fence: Q3 + 1.5 × IQR

With the 1.5 IQR setting, the whiskers stop at the lowest and highest observed values inside those fences. Values outside the fences are listed as potential outliers. With min-max whiskers, the whiskers extend to the smallest and largest values and no points are classified as outliers.

Common box plot mistakes

  • Do not use a text column as the measured value. Box plots need numbers.
  • Do not assume the mean and median tell the same story.
  • Do not use a box plot when the audience needs to see every raw point and the sample is very small.
  • Do not ignore the whisker rule. 1.5 IQR and min-max answer different questions.

If you need every point shown rather than a statistical summary, switch to Dot Plot Maker or Scatter Plot Maker.

FAQ

What is the best data format for a box plot maker?

The best format is tidy CSV or TSV with one numeric value column and an optional categorical grouping column.

What does a box plot show?

A box plot shows the median, the interquartile range, whiskers, and potential outliers, which makes it useful for comparing distributions across groups.

What is the difference between 1.5 IQR and min-max whiskers?

1.5 IQR treats points beyond the standard whisker range as outliers. Min-max extends whiskers to the full observed range instead.

When should I use a box plot instead of a histogram?

Use a box plot when you want a compact summary and group comparison. Use a histogram when you want to inspect the full shape of one distribution.

Related Guides