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. |
kind | scatter or line; default : scatter | defines the type of plot, either scatterplot() or lineplot() |
row, col | names of variables in data; optional | Categorical variables that will determine the faceting of the grid. |
col_wrap | int; optional | “Wrap” the column variable at this width, so that the column facets span multiple rows. |
row_order, col_order | lists of strings; optional | Order to organize the rows and columns of the grid. |
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. |
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. |
height | scalar; optional | Height (in inches) of each facet. |
Aspect | scalar; optional | Aspect ratio of each facet, i.e. width/height |
facet_kws | dict; optional | Dictionary of other keyword arguments to pass to FacetGrid. |
kwargs | key, value pairings | Other keyword arguments are passed through to the underlying plotting function. |