How to set negative values to zero in the R programming language. More details: https://statisticsglobe.com/replace-n...
R code of this video:
vec <- c(-1, 4, 2, 5, -3, 9, -9, 0, 5) # Create example vector
vec # Print example vector
vec_positive <- vec # Duplicate vector
vec_positive[vec_positive < 0] <- 0 # Set negative values to 0
vec_positive # Print updated vector
data <- data.frame(x1 = -4:3, # Create example data frame
x2 = -1,
x3 = -2:5)
data_positive <- data # Duplicate data frame
data_positive[data_positive < 0] <- 0 # Set negative values to 0
Follow me on Social Media:
Facebook – Statistics Globe Page: / statisticsglobecom
Facebook – Group for Discussions & Questions: / statisticsglobe
LinkedIn – Statistics Globe Page: / statisticsglobe
LinkedIn – Group for Discussions & Questions: / 12555223
Twitter: / joachimschork
Music by bensound.com
Смотрите видео Replace Negative Values by Zero in R (2 Examples) | Exchange, Substitute & Set to 0 | Vector & Data онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Statistics Globe 13 Ноябрь 2021, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 2,479 раз и оно понравилось 24 людям.