vignettes/a4_smooth.Rmd
a4_smooth.Rmd
In addition to fitting conventional DFA models with trends modeled as random walks (or ARMA processes), we can also construct models where underlying trends are treated as smooth trends (B-splines, P-splines, or Gaussian processes).
Let’s load the necessary packages:
The sim_dfa
function normally simulates loadings \(\sim N(0,1)\), but here we will simulate
time series that are more similar with loadings \(\sim N(1,0.1)\)
As a first approach, we can fit models where trends are estimated as
B-splines. To do this, we change the trend_model
argument,
and specify the number of knots. More knots translates to smoother
functions. For example,
Or for a model with more knots,
Obviously, trends from the B-spline model are sensitive to the number of knots. As an alternative, we also allow trends to be modeled as penalized regression splines (“P-splines”). These methods are less sensitive to the numbers of knots, and only require the knots to be enough to adequately describe the wiggliness of the function.
We can fit these kinds of models by changing the
trend_model
argument
Finally, another type of smoothing that can be done is treating the
trends as Gaussian processes. Both full rank models (knots = time
points) or predictive process models may be fit (fewer knots results in
smoother functions). These types of models may be specified by again
changing the trend_model
argument,
All of the smooth trend methods are flexible and able to capture the wiggliness of latent trends. Based on our experience, the B-spline and P-spline models will generally fit faster than the Gaussian predicitve process models (because they omit a critical matrix inversion step). The full rank Gaussian process models tend to be faster than the predictive process models. All of these approaches can be compared using cross validation, or similar predictive performance criterion.