x, y | numeric | Input data variables |
data | Dataframe | Dataset that is being used. |
hue, size, style | name in data; optional | Grouping variable that will produce elements with different colors. |
palette | name, list, or dict; optional | Colors to use for the different levels of the hue variable. |
hue_order | list; optional | Specified order for the appearance of the hue variable levels. |
hue_norm | tuple or Normalize object; optional | Normalization in data units for colormap applied to the hue variable when it is numeric. |
sizes | list, dict, or tuple; optional | determines the size of each point in the plot. |
size_order | list; optional | Specified order for appearance of the size variable levels |
size_norm | tuple or Normalize object; optional | Normalization in data units for scaling plot objects when the size variable is numeric. |
markers, dashes | boolean, list, or dictionary; optional | object determining the shape of marker for each data points. |
style_order | list; optional | Specified order for appearance of the style variable levels |
units | long_form_var | Grouping variable identifying sampling units. When used, a separate line with correct terminology will be drawn for each unit but no legend entry will be inserted. Useful for displaying experimental replicate distribution when exact identities are not necessary. |
estimator | name of pandas method or callable or None; optional | Method for aggregating the vector y at the same x point through multiple observations. If None, all observations will be drawn. |
ci | int or "sd" or None; optional | Size of the confidence interval to be drawn when aggregating with an estimator. "sd" means drawing a standard deviation. |
n_boot | int; optional> | Number of bootstraps to use for confidence interval measurement. |
seed | int, numpy.random.Generator, or numpy.random.RandomState; optional | Seed or random number generator for reproducible bootstrapping. |
sort | bool; optional | is True, sorts the data. |
err_style | "band" or "bars"; optional | Either using translucent error bands to display the confidence intervals or discrete error bars. |
err_kws | dict of keyword arguments | Additional parameters to control the aesthetics of the error bars. |
legend | “brief”, “full”, or False; optional | If “brief”, numeric hue and size variables will be represented with a sample of evenly spaced values. If “full”, every group will get an entry in the legend. If False, no legend data is added and no legend is drawn. |
ax | matplotlib axes; optional | Axes object in which the plot is to be drawn. |
kwargs | key, value pairings | Other keyword arguments are passed through to the underlying plotting function. |