Learn R Programming

intubate (version 1.0.0)

mnlogit: Interfaces for mnlogit package for data science pipelines.

Description

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

Usage

ntbt_mnlogit(data, ...)

Arguments

data
data frame, tibble, list, ...
...
Other arguments passed to the corresponding interfaced function.

Value

Object returned by interfaced function.

Details

Interfaces call their corresponding interfaced function.

Examples

Run this code
## Not run: 
# library(intubate)
# library(magrittr)
# library(mnlogit)
# 
# 
# ## ntbt_mnlogit: Fast estimation of multinomial logit models
# library(mnlogit)
# data(Fish, package = "mnlogit")
# 
# ## Original function to interface
# mnlogit(mode ~ price | income | catch, Fish, ncores = 2)
# 
# ## The interface puts data as first parameter
# ntbt_mnlogit(Fish, mode ~ price | income | catch, ncores = 2)
# 
# ## so it can be used easily in a pipeline.
# Fish %>%
#   ntbt_mnlogit(mode ~ price | income | catch, ncores = 2)
# ## End(Not run)

Run the code above in your browser using DataLab