class geom_linerange : LineRangeAesthetics, LayerBase
Display a line range defined by an upper and lower value.
data
- dictionary or pandas DataFrame, optional.
The data to be displayed in this layer. If None, the default, the data
is inherited from the plot data as specified in the call to lets_plot.
stat
- string, optional.
The statistical transformation to use on the data for this layer.
position
- string, optional.
Position adjustment, either as a string ("identity", "stack", "dodge", ...), or the result of a call to a
position adjustment function.
ymin
- lower bound for line range.
ymax
- upper bound for line range.
alpha
- transparency level of a layer
Understands numbers between 0 and 1.
color
- (colour) color of a geometry lines.
Can be continuous or discrete. For continuous value this will be a color gradient between two colors.
linetype
- type of the line of tile's border.
Codes and names: 0 = "blank", 1 = "solid", 2 = "dashed", 3 = "dotted", 4 = "dotdash",
5 = "longdash", 6 = "twodash".
mapping
- set of aesthetic mappings.
Aesthetic mappings describe the way that variables in the data are
mapped to plot "aesthetics".
<init> |
Display a line range defined by an upper and lower value. geom_linerange(data: Map<*, *>? = null, stat: StatOptions = Stat.identity, position: PosOptions = Pos.identity, showLegend: Boolean = true, sampling: SamplingOptions? = null, x: Double? = null, ymin: Double? = null, ymax: Double? = null, alpha: Number? = null, color: Any? = null, linetype: Any? = null, size: Number? = null, mapping: LineRangeMapping.() -> Unit = {}) |
alpha |
transparency level of a layer Understands numbers between 0 and 1. val alpha: Number? |
color |
(colour) color of a geometry lines. Can be continuous or discrete. For continuous value this will be a color gradient between two colors. val color: Any? |
linetype |
type of the line of tile's border. Codes and names: 0 = "blank", 1 = "solid", 2 = "dashed", 3 = "dotted", 4 = "dotdash", 5 = "longdash", 6 = "twodash". val linetype: Any? |
size |
lines width. val size: Number? |
x |
x-axis coordinates. val x: Double? |
ymax |
upper bound for line range. val ymax: Double? |
ymin |
lower bound for line range. val ymin: Double? |
toSpec |
fun Layer.toSpec(): MutableMap<String, Any> |