Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 2.13 KB

README.md

File metadata and controls

42 lines (26 loc) · 2.13 KB

Boxplot

A box plot summarizes a distribution of quantitative values using a set of summary statistics. The median tick in the box represents the median. The lower and upper parts of the box represent the first and third quartile respectively. Depending on the type of box plot, the ends of the whiskers can represent multiple things.

Basic example

image

Basic example (exploration with tooltip; showing summaries)

Screenshot 2022-09-14 113833

Box Plots with Options

Offering Box Plots that render the bars either vertically or horizonally. For each, the user may control:

  • Outlier visibility
  • Box width
  • Box size
  • Chart label font style
  • Box color
  • Median color
  • Background color
  • Extent (whiskers)

Note on Extent and Box Plot Types

Box Plot Types supports either a integer or "min-max"

  • Integer: defines the Tukey Box Plot the whisker spans from the smallest data to the largest data within the range [Q1 - k * IQR, Q3 + k * IQR] where Q1 and Q3 are the first and third quartiles while IQR is the interquartile range (Q3-Q1). In this type of box plot, you can specify the constant k by setting the extent. If there are outlier points beyond the whisker, they will be displayed using point marks. The default is 1.5
  • "min-max": The lower and upper whiskers are defined as the min and max respectively. No points will be considered as outliers for this type of box plots.

Box Plot Horizontal:

boxplot-horizontal

Box Plot Vertical

boxplot-vertical

Inspired by Video Tutorial