或熊猫系列的关键字

时间:2018-12-13 15:01:16

标签: python pandas

我不知道如何将suppressMessages等同于熊猫系列。

MWE:

suppressWarnings(suppressMessages(Packages <- c("gridExtra", "scatterplot3d", "plot3D", "gridExtra", "plyr", "ggplot2", "magrittr", "reshape2", "data.table")))
suppressWarnings(suppressMessages(lapply(Packages, library, character.only = TRUE)))

2 个答案:

答案 0 :(得分:3)

如果您有两列以上,请使用bfill

df['a']=df.bfill(1).b
df
Out[16]: 
          b         c         a
0      None  not None  not None
1  not None     other  not None

答案 1 :(得分:2)

您可以使用fillna来获得所需的结果:

df['a'] = df.b.fillna(df.c)
print (df)
          b         c         a
0      None  not None  not None
1  not None     other  not None

其中None中的值为b,则认为c的值