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
dat$e <- rowSums(dat[,c("b", "c")], na.rm=TRUE) dat # a b c d e # 1 1 2 3 4 5 # 2 5 NA 7 8 7