mhurdle: Interfaces for mhurdle package for data science pipelines.

Description Usage Arguments Details Value Author(s) Examples

Description

Interfaces to mhurdle 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
## Not run: 
library(intubate)
library(magrittr)
library(mhurdle)


## ntbt_mhurdle: Estimation of limited dependent variable models
data("Interview", package = "mhurdle")

## Original function to interface
mhurdle(vacations ~ car + size | linc + linc2 | 0, Interview,
        dist = "ln", h2 = TRUE, method = "bfgs")

## The interface puts data as first parameter
ntbt_mhurdle(Interview, vacations ~ car + size | linc + linc2 | 0,
             dist = "ln", h2 = TRUE, method = "bfgs")

## so it can be used easily in a pipeline.
Interview %>%
  ntbt_mhurdle(vacations ~ car + size | linc + linc2 | 0,
               dist = "ln", h2 = TRUE, method = "bfgs")

## End(Not run)

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