View source: R/pipeline-helpers.R
approx_fun_constant | R Documentation |
approx
(interpolation) for use in a dplyr pipeline.
approx_fun_constant(year, value, rule = 1)
year |
Numeric year, in a melted tibble or data frame |
value |
Numeric value to interpolate |
rule |
Rule to use; see |
This is a slight change to approx_fun that can be used if there is only one value, not two to interpolate between.
This function will apply the one value you do have to all other years in a grouping.
Interpolated values.
df <- data.frame(year = 1:5, value = c(1, 2, NA, 4, 5))
approx_fun_constant(df$year, df$value, rule = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.