您好我正在尝试绘制此excel文件。但是,当我使用图形功能时,我不断得到一个attributeError。我之前已经进口了熊猫,但我仍然不确定为什么会出现这种情况:
AttributeError:'dict'对象没有属性'plt'
df1之前用pandas打开一个文件,那部分代码效果很好。 df1 = pd.read_excel(file,sheetname = None)
import seaborn as sns
import matplotlib.pyplot as plt
import numpy as np
lineplot = df1.plt(title="Dosage ",legend=None)
fig = lineplot.get_figure()
fig.savefig("Random Graph")