boxplot

class boxplot(val x: Number? = null, val y: Number? = null, val lower: Number? = null, val middle: Number? = null, val upper: Number? = null, val ymin: Number? = null, val ymax: Number? = null, val xlower: Number? = null, val xmiddle: Number? = null, val xupper: Number? = null, val xmin: Number? = null, val xmax: Number? = null, val fatten: Number? = null, val whiskerWidth: Number? = null, val alpha: Number? = null, val color: Any? = null, val fill: Any? = null, val size: Number? = null, val linetype: Any? = null, val shape: Any? = null, val angle: Number? = null, val width: Number? = null, val colorBy: String? = null, val fillBy: String? = null, val mapping: BoxplotMapping.() -> Unit = {}) : GeomOptions, BoxplotAesthetics, BoxplotParameters, WithColorOption, WithFillOption

Constructors

Link copied to clipboard
constructor(x: Number? = null, y: Number? = null, lower: Number? = null, middle: Number? = null, upper: Number? = null, ymin: Number? = null, ymax: Number? = null, xlower: Number? = null, xmiddle: Number? = null, xupper: Number? = null, xmin: Number? = null, xmax: Number? = null, fatten: Number? = null, whiskerWidth: Number? = null, alpha: Number? = null, color: Any? = null, fill: Any? = null, size: Number? = null, linetype: Any? = null, shape: Any? = null, angle: Number? = null, width: Number? = null, colorBy: String? = null, fillBy: String? = null, mapping: BoxplotMapping.() -> Unit = {})

Properties

Link copied to clipboard
open override val alpha: Number? = null

Transparency level of a layer. Understands numbers between 0 and 1.

Link copied to clipboard
open override val angle: Number? = null

Rotation angle of the shape, in degrees.

Link copied to clipboard
open override val color: Any? = null

Color of the geometry. For more info see: aesthetics.html#color-and-fill.

Link copied to clipboard
open override val colorBy: String? = null

default = "color" ("fill", "color", "paint_a", "paint_b", "paint_c"). Defines the color aesthetic for the layer.

Link copied to clipboard
open override val fatten: Number? = null

A multiplicative factor applied to size of the middle bar.

Link copied to clipboard
open override val fill: Any? = null

Fill color. For more info see: aesthetics.html#color-and-fill.

Link copied to clipboard
open override val fillBy: String? = null

default = "fill" ("fill", "color", "paint_a", "paint_b", "paint_c"). Defines the fill aesthetic for the layer.

Link copied to clipboard
val kind: GeomKind
Link copied to clipboard
open override val linetype: Any? = null

Type of the line of border. Accept codes or names (0 = "blank", 1 = "solid", 2 = "dashed", 3 = "dotted", 4 = "dotdash", 5 = "longdash", 6 = "twodash"), a hex string (up to 8 digits for dash-gap lengths), or a pattern offset to listOf(dash, gap, ...) / listOf(dash, gap, ...). For more info see: aesthetics.html#line-types.

Link copied to clipboard
open override val lower: Number? = null

Lower hinge, 25% quantile for vertical boxplot.

Link copied to clipboard
val mapping: Options
Link copied to clipboard
open override val middle: Number? = null

Median, 50% quantile for vertical boxplot.

Link copied to clipboard
open override val parameters: Options
Link copied to clipboard
open override val shape: Any? = null

Shape of the point. For more info see: aesthetics.html#point-shapes.

Link copied to clipboard
open override val size: Number? = null

Lines width.

Link copied to clipboard
open override val upper: Number? = null

Upper hinge, 75% quantile for vertical boxplot.

Link copied to clipboard
open override val whiskerWidth: Number? = null

A multiplicative factor applied to the box width to draw horizontal segments on whiskers.

Link copied to clipboard
open override val width: Number? = null

Width of boxplot. Typically ranges between 0 and 1. Values that are greater than 1 lead to overlapping of the boxes.

Link copied to clipboard
open override val x: Number? = null

x-axis coordinate for vertical boxplot.

Link copied to clipboard
open override val xlower: Number? = null

Lower hinge, 25% quantile for horizontal boxplot.

Link copied to clipboard
open override val xmax: Number? = null

Upper whisker - the largest observation less than or equal to the upper hinge + 1.5 * IQR for horizontal boxplot.

Link copied to clipboard
open override val xmiddle: Number? = null

Median, 50% quantile for horizontal boxplot.

Link copied to clipboard
open override val xmin: Number? = null

Lower whisker - the smallest observation greater than or equal to the lower hinge - 1.5 * IQR for horizontal boxplot.

Link copied to clipboard
open override val xupper: Number? = null

Upper hinge, 75% quantile for horizontal boxplot.

Link copied to clipboard
open override val y: Number? = null

y-axis coordinate for horizontal boxplot.

Link copied to clipboard
open override val ymax: Number? = null

Upper whisker - the largest observation less than or equal to the upper hinge + 1.5 * IQR for vertical boxplot.

Link copied to clipboard
open override val ymin: Number? = null

Lower whisker - the smallest observation greater than or equal to the lower hinge - 1.5 * IQR for vertical boxplot.