View source: R/data_management.R
create_lagged_cov | R Documentation |
This function creates lagged choice covariates from the data.frame
choice_data
, which is assumed to be sorted by the choice occasions.
create_lagged_cov(choice_data, column, k = 1, id = "id")
choice_data |
A |
column |
A character, the column name in |
k |
A positive number, the number of lags (in units of observations), see the
details. Can be a vector. The default is |
id |
A character, the name of the column in |
Say that choice_data
contains the column column
. Then, the
function call
create_lagged_cov(choice_data, column, k, id)
returns the input choice_data
which includes a new column named
column.k
. This column contains for each decider (based on id
)
and each choice occasion the covariate faced before k
choice
occasions. If this data point is not available, it is set to
NA
. In particular, the first k
values of column.k
will
be NA
(initial condition problem).
The input choice_data
with the additional columns named
column.k
for each element column
and each number k
containing the lagged covariates.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.