pandas和matplotlib错误:' AxesHostAxes'对象没有属性' rowNum'

时间:2015-09-13 18:25:57

标签: python pandas matplotlib

我试图使用pandas DataFrame和matplotlib插入轴绘制图形,但无法使其工作。这只发生在我将我的pandas软件包更新到版本0.16.2后,现在我总是收到以下错误消息:

' AxesHostAxes'对象没有属性' rowNum'

以下是我的代码:

    fig, ax = plt.subplots(figsize=(6,4))

    mydata.plot(ax = ax, color = colors[1])
    axins =  inset_axes(ax,
                            width="55%", # width = 30% of parent_bbox
                            height="50%", # height : 1 inch
                            loc = 4,

            )
    mydata[:151].plot(ax = axins, color = colors[1])

mydata是一个pandas DataFrame。即使出现错误信息,我也会得到以下图表。谁知道如何解决这个问题? Output of the graph

1 个答案:

答案 0 :(得分:0)

之前我遇到过这样的问题,并在github_issue

找到解决方案

尝试使用以下命令重新安装pandas:

sudo -H pip install pandas==0.15.2