我试图使用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])
答案 0 :(得分:0)