How to replace NA values with 0 in R programming (2 examples).
R code of this video:
##### Replace NA with 0 in vector #####
Example vector
x <- c(4, 9, 1, NA, 5, NA, NA)
Replace NA
x[is.na(x)] <- 0
##### Replace NA with 0 in data.frame
Example data.frame
data(airquality)
Replace NA
airquality[is.na(airquality)] <- 0
Find more explanations at https://statisticsglobe.com/r-replace...
Also, have a look at this post, in which I am explaining the is.na R function in more detail: https://statisticsglobe.com/r-is-na-f...
Additional information: The procedure that is shown in the video can also be applied to change NA to any other value. Just replace the 0 - as shown in the video - with another value.
Смотрите видео Replace NA with 0 in R | 2 Examples for Vector & Data Frame онлайн, длительностью часов минут секунд в хорошем качестве, которое загружено на канал Statistics Globe 07 Сентябрь 2018. Делитесь ссылкой на видео в социальных сетях, чтобы ваши подписчики и друзья так же посмотрели это видео. Данный видеоклип посмотрели 9,511 раз и оно понравилось 112 посетителям.