mp_interpolate | R Documentation |
As the Manifesto Project's variables are collected election-wise, values
for the time/years in between elections are not naturally available.
mp_interpolate
allows to approximate them by several methods from
the abjacent observations.
mp_interpolate(
df,
vars = "(^rile$)|(^per((\\d{3}(_\\d)?)|\\d{4})$)",
by = "year",
approx = zoo::na.approx,
...
)
df |
a data.frame with observations to be interpolated |
vars |
a regular expression matching the names of the variables to be interpolated |
by |
increment of the interpolation sequence, passed to |
approx |
Interpolation function, defaults to zoo's |
... |
Further arguments, passed on to approx |
## Not run:
mp_interpolate(mp_maindataset(), method = "constant")
mp_interpolate(mp_maindataset(), approx = na.spline, maxgap = 3)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.