plotnine.stat_count

stat_count(
    mapping=None,
    data=None,
    *,
    geom="histogram",
    position="stack",
    na_rm=False,
    width=None,
    **kwargs
)

Counts the number of cases at each x position

Parameters

mapping : aes = None

Aesthetic mappings created with aes. If specified and inherit_aes=True, it is combined with the default mapping for the plot. You must supply mapping if there is no plot mapping.

Aesthetic Default value
x
y after_stat('count')

The bold aesthetics are required.

Options for computed aesthetics

"count"  # Number of observations at a position
"prop"   # Ratio of points in the panel at a position
data : DataFrame = None

The data to be displayed in this layer. If None, the data from from the ggplot() call is used. If specified, it overrides the data from the ggplot() call.

geom : str | geom = "histogram"

The statistical transformation to use on the data for this layer. If it is a string, it must be the registered and known to Plotnine.

position : str | position = "stack"

Position adjustment. If it is a string, it must be registered and known to Plotnine.

na_rm : bool = False

If False, removes missing values with a warning. If True silently removes missing values.

width : float = None

Bar width. If None, set to 90% of the resolution of the data.

**kwargs : Any = {}

Aesthetics or parameters used by the geom.

See Also

stat_bin