archetypes.visualization.stacked_bar#

archetypes.visualization.stacked_bar(points, ax=None, **params)#

A stacked bar plot of points with multiple optional parameters to obtain a customized visualization.

Parameters:
pointsnumpy.ndarray

The points to plot.

axmatplotlib.pyplot.axes or None

The axes to plot on. If None, the current axes will be used.

**paramsdict, optional

The parameters to pass to the bar plot. ax.bar(…, **params)

Returns:
matplotlib.pyplot.axes

The axes with the plot.