Syntax: seaborn.pointplot(x=None, y=None, hue=None, data=None, order=None,hue_order=None, estimator=<function mean at 0x00000193E305E828>, ci=95, n_boot=1000, units=None, markers='o', linestyles='-', dodge=False, join=True, scale=1, orient=None, color=None, palette=None, errwidth=None, capsize=None, ax=None, **kwargs)
Parameters: The description of some main parameters are given below:
- x, y: Inputs for plotting long-form data.
- hue: (optional) column name for color encoding.
- data: dataframe as a Dataset for plotting.
- markers: (optional) Markers to use for each of the 'hue' levels.
- linestyles: (optional) Line styles to use for each of the 'hue' levels.
- dodge: (optional) Amount to separate the points for each level of the 'hue' variable along the categorical axis.
- color: (optional) Color for all the elements, or seed for a gradient palette.
- capsize: (optional) Width of the 'caps' on error bars.
Return: The Axes object with the plot drawn onto it.