Title: | Multilevel Latent Time Series Models with 'R' and 'Stan' |
---|---|
Description: | Fit multilevel manifest or latent time-series models, including popular Dynamic Structural Equation Models (DSEM). The models can be set up and modified with user-friendly functions and are fit to the data using 'Stan' for Bayesian inference. Path models and formulas for user-defined models can be easily created with functions using 'knitr'. Asparouhov, Hamaker, & Muthen (2018) <doi:10.1080/10705511.2017.1406803>. |
Authors: | Kenneth Koslowski [aut, cre, cph]
|
Maintainer: | Kenneth Koslowski <[email protected]> |
License: | GPL (>= 3) |
Version: | 1.0.0 |
Built: | 2025-02-28 04:37:13 UTC |
Source: | https://github.com/munchfab/mlts |
Simulated Data (from mlts_sim
) for one time-series variable.
ar1_data
ar1_data
ar1_data
A data frame with 2,500 rows and 3 columns:
Unit identifier
Time point
The time-series variable
Create Missings for Approximation of Continuous Time Dynamic Models (new version)
create_missings(data, tinterval, id, time, btw_vars = NULL)
create_missings(data, tinterval, id, time, btw_vars = NULL)
data |
An object of class |
tinterval |
The step interval for approximation for a continuous time DSEM. The smaller the step interval, the better the approximation. |
id |
The variable in |
time |
The variable in |
btw_vars |
The names of between-level variables in the data to be added in newly created rows with NAs. |
A data.frame
with missings imputed for use in mlts_fit
.
# create some data for example data <- data.frame( id = rep(c(1, 2), each = 4), time = c(0, 3, 4, 6, 1, 4, 5, 7) ) # create missings to approximate continuous time process create_missings( data = data, id = "id", time = "time", tinterval = 1 # use time interval of 1 minute )
# create some data for example data <- data.frame( id = rep(c(1, 2), each = 4), time = c(0, 3, 4, 6, 1, 4, 5, 7) ) # create missings to approximate continuous time process create_missings( data = data, id = "id", time = "time", tinterval = 1 # use time interval of 1 minute )
Fit Bayesian Multilevel Manifest or Latent Time-Series Models
mlts_fit( model, data = NULL, id, ts, covariates = NULL, outcomes = NULL, outcome_pred_btw = NULL, center_covs = TRUE, time = NULL, tinterval = NULL, beep = NULL, days = NULL, n_overnight_NAs, na.rm = FALSE, iter = 500, chains = 2, cores = 2, monitor_person_pars = FALSE, get_SD_latent = FALSE, fit_model = TRUE, print_message = TRUE, print_warning = TRUE, ... )
mlts_fit( model, data = NULL, id, ts, covariates = NULL, outcomes = NULL, outcome_pred_btw = NULL, center_covs = TRUE, time = NULL, tinterval = NULL, beep = NULL, days = NULL, n_overnight_NAs, na.rm = FALSE, iter = 500, chains = 2, cores = 2, monitor_person_pars = FALSE, get_SD_latent = FALSE, fit_model = TRUE, print_message = TRUE, print_warning = TRUE, ... )
model |
|
data |
An object of class |
id |
Character. The variable in |
ts |
Character. The variable(s) in |
covariates |
Named character vector. An optional named vector of
characters to refer to predictors of random effects as specified in the |
outcomes |
Named character vector. Similar to |
outcome_pred_btw |
Named character vector. Similar to |
center_covs |
Logical. Between-level covariates used as predictors of random effects
will be grand-mean centered before model fitting by default. Set |
time |
Character. The variable in |
tinterval |
The step interval for approximating equally spaced observations in time by insertion of missing values, to be specified with respect to the time stamp variable provided in time. Procedure for inserting missing values resembles the procedure for time shift transformation as described in Asparouhov, Hamaker, & Muthén (2018). |
beep |
Character. The variable in |
days |
Optional. If a running beep identifier is provided via the |
n_overnight_NAs |
Optional. The number of |
na.rm |
logical. Per default, missing values remain in the data and
will be imputed during model estimation. Set to |
iter |
A positive integer specifying the number of iterations for each chain (including 50% used as warmup). The default is 500. |
chains |
A positive integer specifying the number of Markov chains. The default is 2. |
cores |
The number of cores to use when executing the Markov chains in parallel.
The default is 2 (see |
monitor_person_pars |
Logical. Should person parameters (i.e., values of the latent variables) be stored? Default is FALSE. |
get_SD_latent |
Logical. Set to |
fit_model |
Logical. Set to FALSE to avoid fitting the model which may be helpful to inspect prepared data used for model estimation (default = TRUE). |
print_message |
Logical. Print messages based on defined inputs (default = TRUE). |
print_warning |
Logical. Print warnings based on defined inputs (default = TRUE). |
... |
Additional arguments passed to |
An object of class mltsfit
.
The object is a list containing the following components:
model |
the model object passed to |
data |
the preprocessed data used for fitting the model |
param.labels |
a |
pop.pars.summary |
a |
person.pars.summary |
if |
standata |
a |
stanfit |
an object of class |
posteriors |
an |
Asparouhov, T., Hamaker, E. L., & Muthén, B. (2018). Dynamic Structural Equation Models. Structural Equation Modeling: A Multidisciplinary Journal, 25(3), 359–388. doi:10.1080/10705511.2017.1406803
# build simple vector-autoregressive mlts model for two time-series variables var_model <- mlts_model(q = 2) # fit model with (artificial) dataset ts_data fit <- mlts_fit( model = var_model, data = ts_data, ts = c("Y1", "Y2"), # time-series variables id = "ID", # cluster identifier variable time = "time", # time variable tinterval = 1 # interval for approximation of equidistant measurements, ) # inspect model summary summary(fit)
# build simple vector-autoregressive mlts model for two time-series variables var_model <- mlts_model(q = 2) # fit model with (artificial) dataset ts_data fit <- mlts_fit( model = var_model, data = ts_data, ts = c("Y1", "Y2"), # time-series variables id = "ID", # cluster identifier variable time = "time", # time variable tinterval = 1 # interval for approximation of equidistant measurements, ) # inspect model summary summary(fit)
Build a multilevel latent time series model
mlts_model( class = c("VAR"), q, p = NULL, max_lag = c(1, 2, 3), btw_factor = TRUE, btw_model = NULL, fix_dynamics = FALSE, fix_inno_vars = FALSE, fix_inno_covs = TRUE, inno_covs_zero = FALSE, inno_covs_dir = NULL, fixef_zero = NULL, ranef_zero = NULL, ranef_pred = NULL, out_pred = NULL, out_pred_add_btw = NULL )
mlts_model( class = c("VAR"), q, p = NULL, max_lag = c(1, 2, 3), btw_factor = TRUE, btw_model = NULL, fix_dynamics = FALSE, fix_inno_vars = FALSE, fix_inno_covs = TRUE, inno_covs_zero = FALSE, inno_covs_dir = NULL, fixef_zero = NULL, ranef_zero = NULL, ranef_pred = NULL, out_pred = NULL, out_pred_add_btw = NULL )
class |
Character. Indicating the model type to be specified. For now
restricted to |
q |
Integer. The number of time-varying constructs. |
p |
Integer. For multiple-indicator models, specify a vector of length
|
max_lag |
Integer. The maximum lag of the autoregressive effect to be included in the model. The maximum is 3. Defaults to 1. |
btw_factor |
Logical. If |
btw_model |
A list to indicate for which manifest indicator variables a common between-level factor should be modeled (see Details for detailed instructions). At this point restricted to one factor per latent construct. |
fix_dynamics |
Logical. Fix all random effect variances of autoregressive and cross-lagged effects to zero (constraining parameters to be equal across clusters). |
fix_inno_vars |
Logical. Fix all random effect variances of innovation variances to zero (constraining parameters to be equal across clusters). |
fix_inno_covs |
Logical. Fix all random effect variances of innovation covariances to zero (constraining parameters to be equal across clusters). |
inno_covs_zero |
Logical. Set to |
inno_covs_dir |
For bivariate VAR models with person-specific innovation covariances,
a latent variable approach is applied (for a detailed description, see Hamaker et al., 2018).
by specifying an additional factor that loads onto the contemporaneous innovations of both constructs,
capturing the shared variance of innovations, that is not predicted by the previous time points.
The loading parameters of this latent factor, however, have to be restricted in accordance with
researchers assumptions about the sign of the association between innovations across construct.
Hence, if innovations at time $t$ are assumed to be positively correlated across clusters, set the
argument to |
fixef_zero |
Character. A character vector to index which fixed effects
(referring to the parameter labels in |
ranef_zero |
Character. A character vector to index which random effect variances
(referring to the parameter labels in |
ranef_pred |
A character vector or a named list. Include between-level covariate(s)
as predictor(s) of all random effects in |
out_pred |
A character vector or a named list. Include between-level outcome(s)
to be regressed on all random effects in |
out_pred_add_btw |
A character vector. If |
An object of class data.frame
with the following columns:
Model |
Indicates if the parameter in the respective row is part of the structural, or the measurement model (if multiple indicators per construct are provided) |
Level |
Parameter on the between- or within-level. |
Type |
Describes the parameter type. |
Param |
Parameter names to be referred to in arguments of |
Param_Label |
Parameter labels (additional option to address specific parameters). |
isRandom |
Indicates which within-level parameters are modeled as random (1) or a constant across clusters (0). |
Constraint |
Optional. Included if multiple-indicators per construct (p > 1) are provided.
Constraints on measurement model parameters can be changed by overwriting the respective value
in |
prior_type |
Contains the parameters' prior distribution used in |
prior_location |
Location values of the parameters' prior distribution used
in |
prior_scale |
Scale values of the parameters' prior distribution used
in |
Hamaker, E. L., Asparouhov, T., Brose, A., Schmiedek, F., & Muthén, B. (2018). At the frontiers of modeling intensive longitudinal data: Dynamic structural equation models for the affective measurements from the COGITO study. Multivariate behavioral research, 53(6), 820-841. doi:10.1080/00273171.2018.1446819
# To illustrate the general model building procedure, starting with a simple # two-level AR(1) model with person-specific individual means, AR effects, # and innovation variances (the default option when using mlts_model() and q = 1). model <- mlts_model(q = 1) # All model parameters (with their labels stored in model$Param) can be inspected by calling: model # Possible model extensions/restrictions: # 1. Introducing additional parameter constraints, such as fixing specific # parameters to a constant value by setting the respective random effect # variances to zero, such as e.g. (log) innovation variances model <- mlts_model(q = 1, ranef_zero = "ln.sigma2_1") # Note that setting the argument `fix_inno_vars` to `TRUE` provides # a shortcut to fixing the innovation variances of all constructs # (if q >= 1) to a constant. # 2. Including a multiple indicator model, where the construct is measured by # multiple indicators (here, p = 3 indicators) model <- mlts_model( q = 1, # the number of time-varying constructs p = 3, # the number of manifest indicators # assuming a common between-level factor (the default) btw_factor = TRUE ) # 3. Incorporating between-level variables. For example, inclusion of # an additional between-level variable ("cov1") as predictor of all # (ranef_pred = "cov1") or a specific set of random effects # (ranef_pred = list("phi(1)_11") = "cov1"), an external outcome (e.g., "out1") # to be predicted by all (out_pred = "out1") or specific random effects # (out_pred = list("out1" = c("etaB_1", "phi(1)_11")), using the latent # between-level factor trait scores (etaB_1) and individual first-order # autoregressive effects (phi(1)_11) as joint predictors of outcome "out1". model <- mlts_model( q = 1, p = 3, fix_inno_vars = TRUE, ranef_pred = "cov1", out_pred = list("out1" = c("etaB_1", "phi(1)_11")) ) # Note that the names of the random effect parameters must match the # parameter labels provided in model$Param, the result of the # mlts_model()-functions.
# To illustrate the general model building procedure, starting with a simple # two-level AR(1) model with person-specific individual means, AR effects, # and innovation variances (the default option when using mlts_model() and q = 1). model <- mlts_model(q = 1) # All model parameters (with their labels stored in model$Param) can be inspected by calling: model # Possible model extensions/restrictions: # 1. Introducing additional parameter constraints, such as fixing specific # parameters to a constant value by setting the respective random effect # variances to zero, such as e.g. (log) innovation variances model <- mlts_model(q = 1, ranef_zero = "ln.sigma2_1") # Note that setting the argument `fix_inno_vars` to `TRUE` provides # a shortcut to fixing the innovation variances of all constructs # (if q >= 1) to a constant. # 2. Including a multiple indicator model, where the construct is measured by # multiple indicators (here, p = 3 indicators) model <- mlts_model( q = 1, # the number of time-varying constructs p = 3, # the number of manifest indicators # assuming a common between-level factor (the default) btw_factor = TRUE ) # 3. Incorporating between-level variables. For example, inclusion of # an additional between-level variable ("cov1") as predictor of all # (ranef_pred = "cov1") or a specific set of random effects # (ranef_pred = list("phi(1)_11") = "cov1"), an external outcome (e.g., "out1") # to be predicted by all (out_pred = "out1") or specific random effects # (out_pred = list("out1" = c("etaB_1", "phi(1)_11")), using the latent # between-level factor trait scores (etaB_1) and individual first-order # autoregressive effects (phi(1)_11) as joint predictors of outcome "out1". model <- mlts_model( q = 1, p = 3, fix_inno_vars = TRUE, ranef_pred = "cov1", out_pred = list("out1" = c("etaB_1", "phi(1)_11")) ) # Note that the names of the random effect parameters must match the # parameter labels provided in model$Param, the result of the # mlts_model()-functions.
Create TeX Model Formula from mlts model object
mlts_model_formula( model, file = NULL, keep_tex = FALSE, ts = NULL, covariates = NULL, outcomes = NULL )
mlts_model_formula( model, file = NULL, keep_tex = FALSE, ts = NULL, covariates = NULL, outcomes = NULL )
model |
A model built with |
file |
An optional string containing the name of the file and file path. Has to end with .pdf file format. |
keep_tex |
Logical. Should the TeX file be kept (additional to the
Rmd file)? Defaults to |
ts |
To be included in future releases. An optional character vector containing the names of the time-series variables or indicators. |
covariates |
To be included in future releases. An optional character vector containing the names of the between-level covariates. |
outcomes |
To be included in future releases. An optional character vector containing the names of the between-level outcomes. |
An RMarkdown file that is automatically rendered to a pdf document.
# build a simple vector-autoregressive mlts model with two time-series variables var_model <- mlts_model(q = 2) # create formula from the specified model mlts_model_formula(model = var_model)
# build a simple vector-autoregressive mlts model with two time-series variables var_model <- mlts_model(q = 2) # create formula from the specified model mlts_model_formula(model = var_model)
Create Path Diagrams from mlts model object
mlts_model_paths( model, file = NULL, add_png = FALSE, keep_tex = FALSE, ts = NULL, covariates = NULL, outcomes = NULL )
mlts_model_paths( model, file = NULL, add_png = FALSE, keep_tex = FALSE, ts = NULL, covariates = NULL, outcomes = NULL )
model |
A model built with |
file |
An optional string containing the name of the file and file path. Has to end with .pdf file format. |
add_png |
Logical. Set to |
keep_tex |
Logical. Should the TeX file be kept (additional to the
Rmd file)? Defaults to |
ts |
To be included in future releases. An optional character vector containing the names of the time-series variables or indicators. |
covariates |
To be included in future releases. An optional character vector containing the names of the between-level covariates. |
outcomes |
To be included in future releases. An optional character vector containing the names of the between-level outcomes. |
An RMarkdown file that is automatically rendered to a pdf document.
# build a simple vector-autoregressive mlts model with two time-series variables var_model <- mlts_model(q = 2) # create a pathmodel from the specified model mlts_model_paths(model = var_model)
# build a simple vector-autoregressive mlts model with two time-series variables var_model <- mlts_model(q = 2) # create a pathmodel from the specified model mlts_model_paths(model = var_model)
Plot results of mlts
mlts_plot( fit, type = c("fe", "re", "re.cor"), bpe = c("median", "mean"), what = c("all", "Fixed effect", "Random effect SD", "RE correlation", "Outcome prediction", "RE prediction", "Item intercepts", "Loading", "Measurement Error SD"), sort_est = NULL, xlab = NULL, ylab = NULL, facet_ncol = 1, dot_size = 1, dot_color = "black", dot_shape = 1, errorbar_color = "black", errorbar_width = 0.3, add_true = FALSE, true_color = "red", true_shape = 22, true_size = 1, hide_xaxis_text = TRUE, par_labels = NULL, labels_as_expressions = FALSE )
mlts_plot( fit, type = c("fe", "re", "re.cor"), bpe = c("median", "mean"), what = c("all", "Fixed effect", "Random effect SD", "RE correlation", "Outcome prediction", "RE prediction", "Item intercepts", "Loading", "Measurement Error SD"), sort_est = NULL, xlab = NULL, ylab = NULL, facet_ncol = 1, dot_size = 1, dot_color = "black", dot_shape = 1, errorbar_color = "black", errorbar_width = 0.3, add_true = FALSE, true_color = "red", true_shape = 22, true_size = 1, hide_xaxis_text = TRUE, par_labels = NULL, labels_as_expressions = FALSE )
fit |
An object of class |
type |
Type of plot.
type = "fe" (Default)
Forest-plot of model coefficients.
type = "re"
Plot of individual (random) effects
type = "re.cor"
Combined plot depicting the distribution of individual parameter
estimates (posterior summary statistics as provided by |
bpe |
The Bayesian point estimate is, by default, the median of the
posterior distribution ( |
what |
Character. For |
sort_est |
Add parameter label for sorting of random effects. |
xlab |
Title for the x axis. |
ylab |
Title for the y axis. |
facet_ncol |
Number of facet columns (see |
dot_size |
numeric, size of the dots that indicate the point estimates. |
dot_color |
character. indicating the color of the point estimates. |
dot_shape |
numeric. shape of the dots that indicate the point estimates. |
errorbar_color |
character. Color of error bars. |
errorbar_width |
integer. Width of error bars. |
add_true |
logical. If model was fitted with simulated data using |
true_color |
character. Color of points depicting true population parameter used in the data generation. |
true_shape |
integer. Shape of points depicting true population parameter used in the data generation. |
true_size |
integer. Size of points depicting true population parameter used in the data generation. |
hide_xaxis_text |
logical. Hide x-axis text if set to |
par_labels |
character vector. User-specified labels for random effect parameters can be specified. |
labels_as_expressions |
logical. Should parameter names on plot labels be printed
as mathematical expressions? Defaults to |
Returns a ggplot
-object .
# build simple vector-autoregressive mlts model for two time-series variables var_model <- mlts_model(q = 2) # fit model with (artificial) dataset ts_data fit <- mlts_fit( model = var_model, data = ts_data, ts = c("Y1", "Y2"), # time-series variables id = "ID", # identifier variable time = "time", tinterval = 1 # interval for approximation of continuous-time dynamic model, ) # inspect model summary mlts_plot(fit, type = "fe", what = "Fixed effect")
# build simple vector-autoregressive mlts model for two time-series variables var_model <- mlts_model(q = 2) # fit model with (artificial) dataset ts_data fit <- mlts_fit( model = var_model, data = ts_data, ts = c("Y1", "Y2"), # time-series variables id = "ID", # identifier variable time = "time", tinterval = 1 # interval for approximation of continuous-time dynamic model, ) # inspect model summary mlts_plot(fit, type = "fe", what = "Fixed effect")
Simulate data from mlts model
mlts_sim( model, default = FALSE, N, TP, burn.in = 50, seed = NULL, seed.true = 1, btw.var.sds = NULL )
mlts_sim( model, default = FALSE, N, TP, burn.in = 50, seed = NULL, seed.true = 1, btw.var.sds = NULL )
model |
|
default |
logical. If set to |
N |
integer Number of observational units. |
TP |
integer. Number of measurements per observational unit. |
burn.in |
integer. Length of ‘burn-in’ period. |
seed |
integer. Seed used for data generation. |
seed.true |
integer. Separate seed used for sampling of true population parameters values from plausible ranges for stationary time series. |
btw.var.sds |
named numeric vector. Provide standard deviation(s) for all exogenous
between-level variable(s) specified in |
A function to generate data from an output of mlts_model
.
An object of class "mlts_simdata"
.
The object is a list containing the following components:
model |
the model object passed to |
data |
a long format |
RE.pars |
a |
# build a simple vector-autoregressive mlts model with two time-series variables var_model <- mlts_model(q = 2) # simulate data from this model with default true values # (true values are randomly drawn from normal distribution) var_data <- mlts_sim( model = var_model, N = 50, TP = 30, # number of units and number of measurements per unit default = TRUE # use default parameter values ) # the data set is stored in .$data head(var_data$data) # individual parameter values are stored in .$RE.pars head(var_data$RE.pars) # if the mltssim-object is used in mlts_fit(), true values # are added to the fitted object fit <- mlts_fit( model = var_model, data = var_data, id = "ID", ts = c("Y1", "Y2"), time = "time" ) # inspect model with true values head(fit$pop.pars.summary)
# build a simple vector-autoregressive mlts model with two time-series variables var_model <- mlts_model(q = 2) # simulate data from this model with default true values # (true values are randomly drawn from normal distribution) var_data <- mlts_sim( model = var_model, N = 50, TP = 30, # number of units and number of measurements per unit default = TRUE # use default parameter values ) # the data set is stored in .$data head(var_data$data) # individual parameter values are stored in .$RE.pars head(var_data$RE.pars) # if the mltssim-object is used in mlts_fit(), true values # are added to the fitted object fit <- mlts_fit( model = var_model, data = var_data, id = "ID", ts = c("Y1", "Y2"), time = "time" ) # inspect model with true values head(fit$pop.pars.summary)
Get Standardized Estimates for an mlts Model
mlts_standardized( object, what = c("between", "within", "both"), digits = 3, prob = 0.95, add_cluster_std = FALSE )
mlts_standardized( object, what = c("between", "within", "both"), digits = 3, prob = 0.95, add_cluster_std = FALSE )
object |
|
what |
character. Get between-level standardized estimates ( |
digits |
Number of digits. Default is 3. |
prob |
A value between 0 and 1 to indicate the width of the credible interval. Default is .95. |
add_cluster_std |
logical. If |
A list
containing between- and within-level standardized parameters.
# build simple vector-autoregressive mlts model for two time-series variables var_model <- mlts_model(q = 2) # fit model with (artificial) dataset ts_data fit <- mlts_fit( model = var_model, data = ts_data, ts = c("Y1", "Y2"), # time-series variables id = "ID", # identifier variable time = "time", # time variable tinterval = 1, # interval for approximation of continuous-time dynamic model, monitor_person_pars = TRUE # person parameters need to be sampled for standardization ) # inspect standardized parameter estimates mlts_standardized(fit)
# build simple vector-autoregressive mlts model for two time-series variables var_model <- mlts_model(q = 2) # fit model with (artificial) dataset ts_data fit <- mlts_fit( model = var_model, data = ts_data, ts = c("Y1", "Y2"), # time-series variables id = "ID", # identifier variable time = "time", # time variable tinterval = 1, # interval for approximation of continuous-time dynamic model, monitor_person_pars = TRUE # person parameters need to be sampled for standardization ) # inspect standardized parameter estimates mlts_standardized(fit)
mltsfit
Create a summary of a fitted model with class mltsfit
## S3 method for class 'mltsfit' summary( object, priors = FALSE, se = FALSE, prob = 0.95, bpe = c("mean", "median"), digits = 3, flag_signif = FALSE, ... )
## S3 method for class 'mltsfit' summary( object, priors = FALSE, se = FALSE, prob = 0.95, bpe = c("mean", "median"), digits = 3, flag_signif = FALSE, ... )
object |
An object of class |
priors |
Add prior information (default = FALSE). |
se |
Logical. Should the Monte Carlo Standard Error be included
in the summary? Defaults to |
prob |
A value between 0 and 1 to indicate the width of the credible interval. Default is .95. |
bpe |
Bayesian posterior estimate can be either "mean" (the default) or the "median" of the posterior distribution. |
digits |
Number of digits. |
flag_signif |
Add significance flags based on |
... |
Additional arguments affecting the summary produced. |
A summary of model parameters.
# build simple vector-autoregressive mlts model for two time-series variables var_model <- mlts_model(q = 2) # fit model with (artificial) dataset ts_data fit <- mlts_fit( model = var_model, data = ts_data, ts = c("Y1", "Y2"), # time-series variables id = "ID", # identifier variable time = "time", tinterval = 1 # interval for approximation of continuous-time dynamic model, ) # inspect model summary summary(fit)
# build simple vector-autoregressive mlts model for two time-series variables var_model <- mlts_model(q = 2) # fit model with (artificial) dataset ts_data fit <- mlts_fit( model = var_model, data = ts_data, ts = c("Y1", "Y2"), # time-series variables id = "ID", # identifier variable time = "time", tinterval = 1 # interval for approximation of continuous-time dynamic model, ) # inspect model summary summary(fit)
Simulated Time-Series Data (from mlts_sim
) for two
time-series variables.
ts_data
ts_data
ts_data
A data frame with 1,100 rows and 4 columns:
Unit identifier
Time point
The two time-series variables