gpt4 book ai didi

python - Pandas 数据帧错误 : matplotlib. axes._subplots.AxesSubplot

转载 作者:太空狗 更新时间:2023-10-29 19:31:25 24 4
gpt4 key购买 nike

import pandas as pd
import matplotlib.pyplot as plt

file = 'd:\\a\\pandas\\test.xlsx'
data = pd.ExcelFile(file)
df1 = data.parse('Link')
df2 = df1[['dataFor', 'total']]
df2

返回:

enter image description here

 print (type(df2))

告诉我

class 'pandas.core.frame.DataFrame'

尝试

df2.plot(kind='line')

返回

matplotlib.axes._subplots.AxesSubplot at 0xe4241d0

会不会是环境?

Jupyter notebook > Help > About

The version of the notebook server is 4.2.3 and is running on:
Python 3.5.2 |Anaconda 4.2.0 (32-bit)| (default, Jul 5 2016, 11:45:57) [MSC v.1900 32 bit (Intel)]

错在哪里? matplotlib 仍然是标准还是初学者应该选择 Bokeh 还是两者兼而有之?

最佳答案

如果您想查看内联图,请使用

%matplotlib inline

在 header 中(导入之前)。

如果要在窗口中显示图形,请添加行

plt.show()

最后(确保您在 header 中导入了 import matplotlib.pyplot as plt)。

关于python - Pandas 数据帧错误 : matplotlib. axes._subplots.AxesSubplot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41898485/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com