无法从excel工作表添加图例,错误提示为“未找到带有放置图例的标签的句柄”。

时间:2019-12-15 12:37:37

标签: python excel python-3.x python-2.7 matplotlib

我已经尝试通过基本代码将值从工作表获取到图形,并且可以完美地工作,但是当我尝试获取图例(列名)时,出现错误“标签上找到要放入图例的标签。”,并且在图表上显示的是一个白色小框,仅在图表的右上角带有边框。 这是代码:-

cars2=pd.read_excel("D:\python room\excel sheet for python usage\cars1.xlsx",sheet_name="cars")
print(cars2)
import matplotlib.pyplot as plt #package to be installed
y=cars2['Cylinders']
y1=cars2['Acceleration']
x=range(394)
plt.plot(x,y1)
plt.plot(x,y)
plt.legend()
plt.show()

请帮助我解决几个小时以来遇到的问题,甚至在Google上也进行搜索。 theis is the output

0 个答案:

没有答案