It might be simple, but I am not finding the solution I have a tibble of values for one year and would generate the same set for the next 40 years. A small example would look like this (the real data is 2000 x 6)
data <- as_tibble(data.frame(yr =c(2010,2010,2010), values = c("a","b","c")))
Now, I would like have the same set of observations of "values" for the years 2011 until 2050. Any idea how to do this in R?
Thanks Renger