fill_backward | R Documentation |
given NA values fill them with the next non-na value
fill_backward(x)
x |
A numeric vector of values |
Works very well in context of dplyr to carry out backwards imputation
fill_backward(c(1.0, NA, 2)) fill_backward(c(NA, 1, NA, 2)) library(dplyr) df <- data_frame(id = c(1, 1, 2, 2), obs = c(1.2, 4.8, 2.5, NA)) df %>% group_by(id) %>% mutate(obs_imp = fill_backward(obs))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.