I have two dataframes:
df1 <- data.frame(levels = c(1, 3, 5, 7, 9),
values = c(2.2, 5.3, 7.9, 5.4, 8.7))
df2 <- data.frame(levels = c(1, 4, 8, 12)) # other columns not necessary
I want the df1$values to be interpolated to the df2$levels, based on what the numbers in df1$levels are. So there is some interpolation, but also extrapolation to level 12 in the second dataframe.
Perhaps, do a
complete
based on theunion
oflevels
of both datasets and then usena.approx
(fromzoo
) withrule = 2
(for extrapolation)-output