ValueError: color kwarg must have one color per dataset
在画直方图的时候出现了这个问题。我最开始的代码如下:import matplotlib.pyplot as pltplt.hist(x=train.content_type, bins=len(labels_1), color="steelblue", edgecolor='black')plt.xlabel('事件类型')plt.ylabel('频数')plt.show()这个问题是 x=train.content_type 作为参数传进去的时候,其label(1,2,3.