plotnine.stat_quantile
stat_quantile(=None,
mapping=None,
data*,
="quantile",
geom="identity",
position=False,
na_rm=(0.25, 0.5, 0.75),
quantiles="y ~ x",
formula={},
method_args**kwargs
)
Compute quantile regression lines
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 The bold aesthetics are required.
Options for computed aesthetics
"quantile" # quantile "group" # group identifier
Calculated aesthetics are accessed using the
after_stat
function. e.g.after_stat('quantile')
. data : DataFrame = None
-
The data to be displayed in this layer. If
None
, the data from from theggplot()
call is used. If specified, it overrides the data from theggplot()
call. geom : str | geom = "quantile"
-
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 = "identity"
-
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. IfTrue
silently removes missing values. quantiles : tuple = (0.25, 0.5, 0.75)
-
Quantiles of y to compute
formula : str = "y ~ x"
-
Formula relating y variables to x variables
method_args : dict = None
-
Extra arguments passed on to the model fitting method,
fit
. **kwargs : Any = {}
-
Aesthetics or parameters used by the
geom
.