View source: R/helper_functions.R
extract_indiv_data | R Documentation |
Extract the individual level data from the dataset for use in posterior analysis
extract_indiv_data(data, data_cols = NULL)
data |
The dataset |
data_cols |
The individual level columns of attributes - Can be null to take aggregate for each column |
dataframe of all individual level data for each ID
data("Train", package="mlogit")
Train$ID <- Train$id
Train$CHOICE <- as.numeric(Train$choice)
#in this case not actually individual data columns
#an ID column is required here
extract_indiv_data(Train, c('comfort_A', 'comfort_B'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.