在一个维度上绘制pandas面板

时间:2012-11-14 22:14:51

标签: python pandas

我有一个数据小组,我想切出数据来绘制它。

EG。次要维度上的切片。数据是

<class 'pandas.core.panel.Panel'>
Dimensions: 71 (items) x 192 (major) x 19 (minor)
Items: gain to gain_delta
Major axis: AFG to ZWE
Minor axis: ISO3 to 2011

所以如果我想绘制这个切片:

scores.ix[['gain'],['ESP'],2:21]

给出

<bound method Panel.to_frame of <class 'pandas.core.panel.Panel'>
Dimensions: 1 (items) x 1 (major) x 17 (minor)
Items: gain to gain
Major axis: ESP to ESP
Minor axis: 1995 to 2011>

但这些都会产生错误:

scores.ix[['gain'],['ESP'],2:21].plot()

scores.ix[['gain'],['ESP'],2:21].to_frame.plot()

a=scores.ix[['gain'],['ESP'],2:21]
plot(a)

谢谢!

1 个答案:

答案 0 :(得分:0)

我认为你不能绘制专家组。

要从面板中提取系列(和绘图),您可以使用ix语法,使用以下语法:

scores.ix['gain', 'ESP', 2:21].plot()