欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Pandas dataframe error: matplotlib.axes._subplots.AxesSubplot 解决方案

程序员文章站 2022-03-18 21:44:24
...

Pandas dataframe error: matplotlib.axes._subplots.AxesSubplot


《利用Python进行数据分析》书中引言pandas计数例子,生成水平柱状图时报错,原因是没有打开pylab模式,IPython中执行

%pylab
%matplotlib inline

问题得到解决。