seaborn_objects_recipes.recipes.plotting#
Classes
|
Fit a polynomial of the given order and resample data onto predicted curve including confidence intervals. |
- class seaborn_objects_recipes.recipes.plotting.PolyFitWithCI(alpha: float = 0.05, order: int = 2, gridsize: int = 100)#
Bases:
StatFit a polynomial of the given order and resample data onto predicted curve including confidence intervals.
- Parameters:
- Returns:
A Pandas DataFrame with the predicted curve’s ‘x’, ‘y’, ‘ymin’, and ‘ymax’ coordinates.
- Return type:
pd.DataFrame
Methods
__call__(data, groupby, orient, scales)Apply statistical transform to data subgroups and return combined result.