Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2022. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
package org.jetbrains.letsPlot.geom
import org.jetbrains.letsPlot.Stat
import org.jetbrains.letsPlot.intern.GeomKind
import org.jetbrains.letsPlot.intern.layer.GeomOptions
import org.jetbrains.letsPlot.intern.Layer
import org.jetbrains.letsPlot.intern.layer.SamplingOptions
import org.jetbrains.letsPlot.intern.layer.WithColorOption
import org.jetbrains.letsPlot.intern.layer.WithFillOption
import org.jetbrains.letsPlot.intern.layer.geom.YDotplotAesthetics
import org.jetbrains.letsPlot.intern.layer.geom.YDotplotMapping
import org.jetbrains.letsPlot.intern.layer.geom.YDotplotParameters
import org.jetbrains.letsPlot.intern.layer.stat.YDotplotStatAesthetics
import org.jetbrains.letsPlot.intern.layer.stat.YDotplotStatParameters
import org.jetbrains.letsPlot.tooltips.TooltipOptions
@Suppress("ClassName", "SpellCheckingInspection")
/**
*
* Y-dotplot represents individual observations in a batch of data with circular dots.
* The diameter of a dot corresponds to the maximum width or bin width, depending on the binning algorithm.
* `geomYDotplot()` is an obvious blend of `geomViolin()` and `geomDotplot()`.
*
* ## Examples
*
* - [geom_ydotplot.ipynb](https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/kotlin_examples/cookbook/geom_ydotplot.ipynb)
*
* @param data The data to be displayed in this layer. If null, the default, the data
* is inherited from the plot data as specified in the call to [letsPlot][org.jetbrains.letsPlot.letsPlot].
* @param showLegend default = true.
* false - do not show legend for this layer.
* @param manualKey String or result of the call to the `layerKey()` function.
* The key to show in the manual legend. Specifies the text for the legend label or advanced settings using the `layerKey()` function.
* @param sampling Result of the call to the `samplingXxx()` function.
* To prevent any sampling for this layer pass value `samplingNone`.
* For more info see [sampling.html](https://lets-plot.org/kotlin/sampling.html).
* @param tooltips Result of the call to the `layerTooltips()` function.
* Specifies appearance, style and content.
* @param orientation Specifies the axis that the layer's stat and geom should run along.
* The default value (`null`) automatically determines the orientation based on the aesthetic mapping.
* If the automatic detection doesn't work, it can be set explicitly by specifying the "x" or "y" orientation.
* @param x X-axis coordinates.
* @param y Y-axis coordinates.
* @param bins When method is "histodot", this specifies number of bins (default = 30). Overridden by `binWidth`.
* @param center When method is "histodot", this specifies x-value to align bin centers to.
* @param boundary When method is "histodot", this specifies x-value to align bin boundary
* (i.e. point between bins) to.
* @param method default = "dotdensity".
* Use "dotdensity" for dot-density binning,
* or "histodot" for fixed bin widths (like in `geomHistogram()`).
* @param binWidth When method is "dotdensity", this specifies maximum bin width.
* When method is "histodot", this specifies bin width.
* @param stackDir default = "up". Which direction to stack the dots.
* Values: "up", "down", "center", "centerwhole".
* @param stackRatio default = 1.0.
* How close to stack the dots.
* Use smaller values for closer, overlapping dots.
* @param dotSize default = 1.0.
* The diameter of the dots relative to binwidth.
* @param stackGroups Whether dots should be stacked across groups.
* In effect is replacemets for option `position = positionStack()`.
* Note: unlike other geoms, `dotplot` doesn't have `position` option.
* @param stroke Width of the dot border.
* @param alpha Transparency level of a layer. Understands numbers between 0 and 1.
* @param color Color of the geometry.
* For more info see: [aesthetics.html#color-and-fill](https://lets-plot.org/kotlin/aesthetics.html#color-and-fill).
* @param fill Fill color.
* For more info see: [aesthetics.html#color-and-fill](https://lets-plot.org/kotlin/aesthetics.html#color-and-fill).
* @param colorBy default = "color" ("fill", "color", "paint_a", "paint_b", "paint_c").
* Defines the color aesthetic for the geometry.
* @param fillBy default = "fill" ("fill", "color", "paint_a", "paint_b", "paint_c").
* Defines the fill aesthetic for the geometry.
* @param mapping Set of aesthetic mappings.
* Aesthetic mappings describe the way that variables in the data are
* mapped to plot "aesthetics".
*/
class geomYDotplot(
data: Map<*, *>? = null,
showLegend: Boolean = true,
manualKey: Any? = null,
sampling: SamplingOptions? = null,
tooltips: TooltipOptions? = null,
orientation: String? = null,
override val x: Number? = null,
override val y: Any? = null,
override val bins: Int? = null,
override val center: Number? = null,
override val boundary: Number? = null,
override val method: String? = null,
override var binWidth: Number? = null,
override var stackSize: Number? = null,
override val stackDir: String? = null,
override val stackRatio: Number? = null,
override val dotSize: Number? = null,
override val stackGroups: Boolean? = null,
override val stroke: Number? = null,
override val alpha: Number? = null,
override val color: Any? = null,
override val fill: Any? = null,
override val colorBy: String? = null,
override val fillBy: String? = null,
mapping: YDotplotMapping.() -> Unit = {}
) : YDotplotAesthetics,
YDotplotParameters,
YDotplotStatAesthetics,
YDotplotStatParameters,
WithColorOption,
WithFillOption,
Layer(
mapping = YDotplotMapping().apply(mapping).seal(),
data = data,
geom = GeomOptions(GeomKind.Y_DOTPLOT),
stat = Stat.yDotplot(),
position = null, // Default value depends on `stackGroups` flag.
showLegend = showLegend,
manualKey = manualKey,
sampling = sampling,
tooltips = tooltips,
orientation = orientation
) {
override fun seal() = super.seal() +
super.seal() +
super.seal() +
super.seal() +
super.seal() +
super.seal()
}