来自series,python的Dataframe loc

时间:2018-05-11 13:41:51

标签: python python-2.7 dataframe

我有系列,其中存储索引和列名称。 我想只打印系列中的索引和列,而不是整个数据帧。

Series
0       wkeans
1     wContour
2    wDarkBand
3     wContour

Dataframe
     wContour  wDarkBand  wkeans
0   92.000000        0.0    94.0
1   90.000000       88.0    84.0
2   84.000000       86.0    84.0
3   84.000000        0.0   102.0

我希望:

enter image description here

即。 :

94.0
90.0
86.0
84.0

dfW.loc [myseries],dfW.loc [s.index,s.values]不起作用,有什么建议吗?

由于

0 个答案:

没有答案