熊猫向前和向后填充不同的索引

耶罗恩

我有以下数据框df:

             length       timestamp       width
name                                          
testschip-1     NaN 2019-08-01 00:00:00    NaN
testschip-1     NaN 2019-08-01 00:00:09    NaN
testschip-1     2   2019-08-01 00:00:20    NaN
testschip-1     2   2019-08-01 00:00:27    NaN
testschip-1     NaN 2019-08-01 00:00:38    1
testschip-2     4   2019-08-01 00:00:39    2
testschip-2     4   2019-08-01 00:00:57    NaN
testschip-2     4   2019-08-01 00:00:58    NaN
testschip-2     NaN 2019-08-01 00:01:17    NaN
testschip-3     NaN 2019-08-01 00:02:27    NaN
testschip-3     NaN 2019-08-01 00:03:47    NaN

首先,我想从索引“名称”中删除字符串“ testschip-”,以便仅在索引上获得整数。其次,对于每个唯一索引,我都希望在“长度”和“宽度”两列上应用前向填充或后向填充(无论是否需要获得NaN)。每个唯一索引都具有相同的“长度”和“宽度”。在“ testschip-3”上,我不想应用向后或向前填充。如果我向后填充“ testschip-1”(需要将前两个索引设置为2'2',那么对于索引“ testschip-1”的最后一行,我会得到一个不必要的“ 4”)。我无法预先判断是否必须事先应用向后填充或向前填充,因为我有400万行数据开始。

安塞夫

采用:

df.index = df.index.str.lstrip('testschip-').astype(int)
#alternative
#df.index = df.index.str[10:].astype(int)
#df.index = df.index.str.split('-').str[-1].astype(int)
df.groupby(level = 0).apply(lambda x: x.bfill().ffill())

输出量

      length           timestamp  width
name                                   
1        2.0 2019-08-01 00:00:00    1.0
1        2.0 2019-08-01 00:00:09    1.0
1        2.0 2019-08-01 00:00:20    1.0
1        2.0 2019-08-01 00:00:27    1.0
1        2.0 2019-08-01 00:00:38    1.0
2        4.0 2019-08-01 00:00:39    2.0
2        4.0 2019-08-01 00:00:57    2.0
2        4.0 2019-08-01 00:00:58    2.0
2        4.0 2019-08-01 00:01:17    2.0
3        NaN 2019-08-01 00:02:27    NaN
3        NaN 2019-08-01 00:03:47    NaN

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章