BoxplotAesthetics

interface BoxplotAesthetics : OptionsCapsule

Aesthetic properties supported by geomBoxplot().

Inheritors

Properties

Link copied to clipboard
abstract val alpha: Any?

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

Link copied to clipboard
abstract val angle: Any?

Rotation angle of the shape, in degrees.

Link copied to clipboard
abstract val color: Any?

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

Link copied to clipboard
abstract val fill: Any?

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

Link copied to clipboard
abstract val linetype: Any?

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
abstract val lower: Any?

Lower hinge, 25% quantile for vertical boxplot.

Link copied to clipboard
abstract val middle: Any?

Median, 50% quantile for vertical boxplot.

Link copied to clipboard
abstract val shape: Any?

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

Link copied to clipboard
abstract val size: Any?

Lines width.

Link copied to clipboard
abstract val upper: Any?

Upper hinge, 75% quantile for vertical boxplot.

Link copied to clipboard
abstract val width: Any?

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
abstract val x: Any?

x-axis coordinate for vertical boxplot.

Link copied to clipboard
abstract val xlower: Any?

Lower hinge, 25% quantile for horizontal boxplot.

Link copied to clipboard
abstract val xmax: Any?

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

Link copied to clipboard
abstract val xmiddle: Any?

Median, 50% quantile for horizontal boxplot.

Link copied to clipboard
abstract val xmin: Any?

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

Link copied to clipboard
abstract val xupper: Any?

Upper hinge, 75% quantile for horizontal boxplot.

Link copied to clipboard
abstract val y: Any?

y-axis coordinate for horizontal boxplot.

Link copied to clipboard
abstract val ymax: Any?

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

Link copied to clipboard
abstract val ymin: Any?

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