Answers for "r replace all na in matrix"

R
7

r replace na with 0

d[is.na(d)] <- 0
Posted by: Guest on August-08-2020
1

replace na with 0 in R

library(dplyr)
#Replacing missing values with 0 in columns 'x' and 'y' of the tibble dataframe 'df'
df %>% 
  replace_na(list(x = 0, y = 0))
Posted by: Guest on August-16-2020

Browse Popular Code Answers by Language