Changing the color of matplotlib’s violin plots
matplotlib.pyplot.violinplot() says it returns: A dictionary mapping each component of the violinplot to a list of the corresponding collection instances created. The dictionary has the following keys: bodies: A list of the matplotlib.collections.PolyCollection instances containing the filled area of each violin. […among others…] Methods of PolyCollections include: set_color(c) which sets both the facecolor and edgecolor, … Read more