gmnl: Interfaces for gmnl package for data science pipelines.

Description Usage Arguments Details Value Author(s) Examples

Description

Interfaces to gmnl functions that can be used in a pipeline implemented by magrittr.

Usage

1

Arguments

data

data frame, tibble, list, ...

...

Other arguments passed to the corresponding interfaced function.

Details

Interfaces call their corresponding interfaced function.

Value

Object returned by interfaced function.

Author(s)

Roberto Bertolusso

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
## Not run: 
library(intubate)
library(magrittr)
library(gmnl)


## ntbt_gmnl: Estimate Multinomial Logit Models with Observed and
##             Unobserved Individual Heterogeneity
data("TravelMode", package = "AER")
library(mlogit)
TM <- mlogit.data(TravelMode, choice = "choice", shape = "long", 
                 alt.levels = c("air", "train", "bus", "car"), chid.var = "individual")

## Original function to interface
gmnl(choice ~ wait + vcost + travel + gcost| 1, data = TM,
     model = "smnl", R = 100,
     notscale = c(1, 1, 1, rep(0, 4)))

## The interface puts data as first parameter
ntbt_gmnl(TM, choice ~ wait + vcost + travel + gcost| 1,
          model = "smnl", R = 100, 
          notscale = c(1, 1, 1, rep(0, 4)))

## so it can be used easily in a pipeline.
TM %>%
  ntbt_gmnl(choice ~ wait + vcost + travel + gcost| 1,
            model = "smnl", R = 100, 
            notscale = c(1, 1, 1, rep(0, 4)))

## End(Not run)

rbertolusso/intubate documentation built on May 27, 2019, 3 a.m.