extract_indiv_data {mixl}R Documentation

Extract the individual level data from the dataset for use in posterior analysis

Description

Extract the individual level data from the dataset for use in posterior analysis

Usage

extract_indiv_data(data, data_cols = NULL)

Arguments

data

The dataset

data_cols

The individual level columns of attributes - Can be null to take aggregate for each column

Value

dataframe of all individual level data for each ID

Examples

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'))

[Package mixl version 1.3.4 Index]