plotnine.stats.stat_sum

class plotnine.stats.stat_sum(mapping: Aes | None = None, data: DataLike | None = None, **kwargs: Any)[source]

Sum unique values

Useful for overplotting on scatterplots.

Usage

stat_sum(mapping=None, data=None, geom='point', position='identity',
         na_rm=False, **kwargs)

Only the mapping and data can be positional, the rest must be keyword arguments. **kwargs can be aesthetics (or parameters) used by the geom.

Parameters:
mappingaes, optional

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

size

after_stat('n')

weight

1

The bold aesthetics are required.

Options for computed aesthetics

'n'     # Number of observations at a position
'prop'  # Ratio of points in that panel at a position
datadataframe, optional

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.

geomstr or geom, optional (default: geom_point)

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.

positionstr or position, optional (default: position_identity)

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

na_rmbool, optional (default: False)

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