Skip to content

Documentation / @ripl/charts / BoxplotStats

Interface: BoxplotStats

Defined in: charts/src/core/statistics.ts:33

Five-number summary plus IQR and outliers, as used by a box plot.

Properties

PropertyTypeDescriptionDefined in
iqrnumberInterquartile range (q3 - q1).charts/src/core/statistics.ts:45
maxnumberLargest value within the upper whisker (excluding outliers).charts/src/core/statistics.ts:43
mediannumberMedian (50th percentile).charts/src/core/statistics.ts:39
minnumberSmallest value within the lower whisker (excluding outliers).charts/src/core/statistics.ts:35
outliersnumber[]Values beyond 1.5×IQR of the quartiles.charts/src/core/statistics.ts:47
q1numberFirst quartile (25th percentile).charts/src/core/statistics.ts:37
q3numberThird quartile (75th percentile).charts/src/core/statistics.ts:41