plot-api / jetbrains.letsPlot.geom

Package jetbrains.letsPlot.geom

Types

geom_abline

Add a line with specified slope and intercept to the plot.

class geom_abline : ABLineAesthetics, LayerBase

geom_area

Display the development of quantitative values over an interval. This is the continuous analog of geom_bar.

class geom_area : AreaAesthetics, LayerBase

geom_bar

Display a bar chart which makes the height of the bar proportional to the number of observed variable values, mapped to x axis.

class geom_bar : BarAesthetics, CountStatAesthetics, LayerBase

geom_bin2d

Divide the plane into a grid and color the bins by the count of cases in them.

class geom_bin2d : TileAesthetics, Bin2dStatAesthetics, Bin2dStatParameters, LayerBase

geom_boxplot

Display the distribution of data based on a five number summary ("minimum", first quartile (Q1), median, third quartile (Q3), and "maximum"), and "outlying" points individually.

class geom_boxplot : BoxplotAesthetics, BoxplotParameters, BoxplotStatAesthetics, BoxplotStatParameters, LayerBase

geom_contour

Display contours of a 3d surface in 2d.

class geom_contour : PathAesthetics, ContourStatAesthetics, ContourStatParameters, LayerBase

geom_contourf

Fill contours of a 3d surface in 2d.

class geom_contourf : PolygonAesthetics, ContourStatAesthetics, ContourStatParameters, LayerBase

geom_crossbar

Display bars with horizontal median line.

class geom_crossbar : CrossBarAesthetics, LayerBase

geom_density

Display a density estimate, which is a smoothed version of the histogram.

class geom_density : AreaAesthetics, DensityStatAesthetics, DensityStatParameters, LayerBase

geom_density2d

Display density function contour.

class geom_density2d : PathAesthetics, ContourStatAesthetics, Density2dStatAesthetics, Density2dStatParameters, LayerBase

geom_density2df

Fill density function contour.

class geom_density2df : PolygonAesthetics, Density2dStatAesthetics, Density2dStatParameters, LayerBase

geom_errorbar

Error bars defined by an upper and lower value ymin and ymax.

class geom_errorbar : ErrorBarAesthetics, LayerBase

geom_freqpoly

Display a line chart which makes the y value proportional to the number of observed variable values, mapped to x axis.

class geom_freqpoly : LineAesthetics, BinStatParameters, LayerBase

geom_histogram

Display a 1d distribution by dividing variable mapped to x axis into bins and counting the number of observations in each bin.

class geom_histogram : HistogramAesthetics, BinStatAesthetics, BinStatParameters, LayerBase

geom_hline

Add a straight horizontal line to the plot.

class geom_hline : HLineAesthetics, LayerBase

geom_image

class geom_image : ImageAesthetics, LayerBase

geom_jitter

Jittered points, especially for discrete plots or dense plots.

class geom_jitter : PointAesthetics, JitterParameters, LayerBase

geom_line

Connect points in the order of the variable on the x axis. In the case points need to be connected in the order in which they appear in the data, use 'geom_path'.

class geom_line : LineAesthetics, LayerBase

geom_linerange

Display a line range defined by an upper and lower value.

class geom_linerange : LineRangeAesthetics, LayerBase

geom_map

Display a filled closed path defined by the vertex coordinates of individual polygons. 'geom_map' is essentially the same as 'geom_polygon' but uses 'coord_map' as default coordinate system.

class geom_map : PolygonAesthetics, WithSpatialParameters, LayerBase

geom_path

Connect observations in the order in which they appear in the data.

class geom_path : PathAesthetics, WithSpatialParameters, LayerBase

geom_point

Draw points defined by an x and y coordinate.

class geom_point : PointAesthetics, WithSizeUnitOption, WithSpatialParameters, LayerBase

geom_pointrange

Add a vertical line defined by upper and lower value with midpoint at y location.

class geom_pointrange : PointRangeAesthetics, LayerBase

geom_polygon

Display a filled closed path defined by the vertex coordinates of individual polygons.

class geom_polygon : PolygonAesthetics, WithSpatialParameters, LayerBase

geom_raster

Display rectangles defined by the center of the tile (x, y). This is a high performance special function for same-sized tiles. Much faster than geom_tile but doesn't support width/height and color.

class geom_raster : RasterAesthetics, LayerBase

geom_rect

Display a rectangle defined by the four corners (xmin, xmax, ymin and ymax).

class geom_rect : RectAesthetics, WithSpatialParameters, LayerBase

geom_ribbon

Display a y interval defined by ymin and ymax.

class geom_ribbon : RibbonAesthetics, LayerBase

geom_segment

Draw a straight line segment between points (x, y) and (xend, yend).

class geom_segment : SegmentAesthetics, LayerBase

geom_smooth

Add a smoothed conditional mean.

class geom_smooth : SmoothAesthetics, SmoothStatParameters, LayerBase

geom_step

Connect observations in the order in which they appear in the data by stairs.

class geom_step : LineAesthetics, LayerBase

geom_text

Add a text directly to the plot.

class geom_text : TextAesthetics, TextParameters, WithSizeUnitOption, WithSpatialParameters, LayerBase

geom_tile

Display a rectangle defined by the center of the tile and its size (x, y, width, height).

class geom_tile : TileAesthetics, LayerBase

geom_vline

Add a straight vertical line to the plot.

class geom_vline : VLineAesthetics, LayerBase