Sum of two Columns of Data Frame with NA Values

后端 未结 5 619
余生分开走
余生分开走 2020-12-05 10:33

I have a data frame with some NA values. I need the sum of two of the columns. If a value is NA, I need to treat it as zero.

a  b c d
1  2 3 4
5 NA 7 8
         


        
5条回答
  •  醉话见心
    2020-12-05 11:03

    dplyr solution, taken from here:

    library(dplyr)
    dat %>% 
        rowwise() %>% 
        mutate(e = sum(b, c, na.rm = TRUE))
    

提交回复
热议问题