I try to fill in the NA values of column N based on the lag of N and the lag of an additional column. The problem is that it fills in the second row, but not all of them.
Here is my code.
```{r}
library(tidyverse)
library(zoo)
# toy data ----
df <- data.frame('Group.1' = c("a", "a", "a"),
'Group.2' = c("A", "A", "A"),
'monthyr' = as.yearmon(c("2018-01-01", "2018-02-01", "2018-03-01")),
'x' = c(5, 7, 8),
'y' = c(10, 18, 9),
'N' = c(100, NA, NA)
)
df$net <- df$x - df$y
df
# what i get ----
df_attempt <- df %>%
group_by(Group.1, Group.2) %>%
arrange(Group.1, Group.2, monthyr) %>%
mutate(N = ifelse(is.na(N), lag(N) + lag(net), N))
# what i want to get ----
df_expected <- data.frame('Group.1' = c("a", "a", "a"),
'Group.2' = c("A", "A", "A"),
'monthyr' = as.yearmon(c("2018-01-01", "2018-02-01", "2018-03-01")),
'x' = c(5, 7, 8),
'y' = c(10, 18, 9),
'N' = c(100, 95, 84)
)
```
One approach to achieve the kind of "recursive" fill you are trying to achieve may look like so: