I am getting the following ValueError when I try to plot a "violin plot" with matplotlib.
ValueError: zero-size array to reduction operation minimum which has no identity
axes[0].violinplot([[1,2,3],[],[2,3,4]])
I hope two violin plots to be plotted on the left and right sides, and something to be plotted in the middle to represent the invalid items.
What should I do to overcome this?