powered by
Copy values from series to another to fill up missing values
fill_up(fill_up_series = NA, use_series = NA)
Series that has missing values
Series that is used fo fill up missing values
This function is used internally in dsa()
# NOT RUN { a <- b <- daily_sim(n=3)$original a[c(355,376)] <- NA a_new <- fill_up(a, b) all(b==a_new) # }
Run the code above in your browser using DataLab