Boxplot
In descriptive statistics, a boxplot is a convenient way of graphically depicting groups of numerical data through their quartiles. A boxplot gives a nice summary of one or several numeric variables. The line that divides the box into 2 parts represents the median of the data. The end of the box shows the upper and lower quartiles. The extreme lines show the highest and lowest value. Boxplots can be drawn either horizontally or vertically.
This functionality is provided by the live-exploratory-viz-1.2.0+ plugin. It is available on the marketplace.
Is this plugin, there is an aggregation function for generate a boxplot: boxplot(value)
, where the input is any numeric value output from a Pipes query.
Example:
The boxplot function returns an array with the following structure: 1. Minimum 2. First quartile 3. Second quartile (Median) 4. Third quartile 5. Maximum 6. Mean
Example (return values will change according to the input):
Functional Tutorial
Using the pipes query below as an example:
We can obtain a chart similar to this one:
Last updated