dataframe填充NaN值

将字段RLC Throughput DL为NaN替换为0

df['RLC Throughput DL'].fillna(0, inplace=True)
碰到NaN值用上一行的值替换
df.fillna(method='ffill', inplace=True)
碰到NaN值用下一行的值替换
df.fillna(method='bfill', inplace=True)


posted @ 2020-08-12 17:57  岁月饶过谁  阅读(5442)  评论(0编辑  收藏  举报