在时间序列熊猫Python中使用'n / a'删除一行

时间:2015-05-20 06:15:21

标签: python row

我读了一个熊猫时间序列,其中时间序列中的某些字段具有条目'n / a'。 我想摆脱所有这些条目并重新编制时间序列索引。

13
15
47
n/a
temp
car

我试过

ts.drop('n/a')

但它会抛出消息

ValueError: labels ['n/a'] not contained in axis

也试过

ts.dropna(how='any')

这不会产生任何错误,但“n / a”未被删除

任何帮助都会很棒。

1 个答案:

答案 0 :(得分:0)

尝试:

updateName

(id)sender
BTW,这是一个列表还是Pandas系列或时间序列?

如果时间序列是索引,请尝试:

list.dropna(how='any', inplace=True)

如果它是DataFrame中的列值,请尝试:

list = list.dropna(how='any')