Learn R Programming

mixl (version 1.3.4)

extract_indiv_data: 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)

Value

dataframe of all individual level data for each ID

Arguments

data

The dataset

data_cols

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

Examples

Run this code
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'))

Run the code above in your browser using DataLab