plotnine.stat_summary_bin
stat_summary_bin(mapping=None, data=None, **kwargs)Summarise y values at x intervals
{usage}
Parameters
binwidth : float | tuple = None-
The width of the bins. The default is to use bins bins that cover the range of the data. You should always override this value, exploring multiple widths to find the best to illustrate the stories in your data.
bins : int | tuple = 30-
Number of bins. Overridden by binwidth.
breaks : array_like | tuple[array_like, array_like] = None-
Bin boundaries. This supersedes the
binwidth,binsandboundaryarguments. boundary : float | tuple = None-
A boundary between two bins. As with center, things are shifted when boundary is outside the range of the data. For example, to center on integers, use
width=1andboundary=0.5, even if 1 is outside the range of the data. At most one of center and boundary may be specified. fun_data : str | callable = "mean_se"-
If a string, should be one of
mean_cl_boot,mean_cl_normal,mean_sdl,median_hilow,mean_se. If a function, it should that takes an array and return a dataframe with three rows indexed asy,yminandymax. fun_y : callable = None-
A function that takes an array_like and returns a single value
fun_ymax : callable = None-
A function that takes an array_like and returns a single value
fun_args : dict = None-
Arguments to any of the functions. Provided the names of the arguments of the different functions are in not conflict, the arguments will be assigned to the right functions. If there is a conflict, create a wrapper function that resolves the ambiguity in the argument names.
random_state : int | RandomState = None-
Seed or Random number generator to use. If
None, then numpy global generatornumpy.randomis used.
Notes
The binwidth, bins, breaks and boundary arguments can be a tuples with two values (xaxis-value, yaxis-value) of the required type.
See Also
geom_pointrange-
The default
geomfor thisstat.