Boxplot
Last updated
Was this helpful?
Last updated
Was this helpful?
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.
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):
Using the pipes query below as an example:
We can obtain a chart similar to this one: