我的数据集是这样的。
我想阅读面霜和洗面奶产品销售数据并使用条形图显示,条形图应显示每种产品每月销售的单位数量,并在同一图表中为每种产品添加单独的条形图。
代码:
import matplotlib.pyplot as plt
import numpy as np
ax = plt.subplot(111)
ax.bar(x=df['facecream'], y=df['total_units'], height=0.5)
ax.bar(x=df['facewash'], z=df['total_units'], height=0.5)
plt.show()
错误:
ValueError: setting an array element with a sequence.