Learn R Programming

intubate (version 1.0.0)

AER: Interfaces for AER package for data science pipelines.

Description

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

Usage

ntbt_ivreg(data, ...) ntbt_tobit(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(AER)
# 
# 
# ## ntbt_ivreg: Instrumental-Variable Regression
# data("CigarettesSW", package = "AER")
# CigarettesSW$rprice <- with(CigarettesSW, price/cpi)
# CigarettesSW$rincome <- with(CigarettesSW, income/population/cpi)
# CigarettesSW$tdiff <- with(CigarettesSW, (taxs - tax)/cpi)
# 
# ## Original function to interface
# ivreg(log(packs) ~ log(rprice) + log(rincome) | log(rincome) + tdiff + I(tax/cpi),
#       data = CigarettesSW, subset = year == "1995")
# 
# ## The interface puts data as first parameter
# ntbt_ivreg(CigarettesSW,
#            log(packs) ~ log(rprice) + log(rincome) | log(rincome) + tdiff + I(tax/cpi),
#            subset = year == "1995")
# 
# ## so it can be used easily in a pipeline.
# CigarettesSW %>%
#   ntbt_ivreg(log(packs) ~ log(rprice) + log(rincome) | log(rincome) + tdiff + I(tax/cpi),
#              subset = year == "1995")
# 
# 
# ## ntbt_tobit: Tobit Regression
# data("Affairs")
# 
# ## Original function to interface
# tobit(affairs ~ age + yearsmarried + religiousness + occupation + rating,
#       data = Affairs)
# 
# ## The interface puts data as first parameter
# ntbt_tobit(Affairs,
#            affairs ~ age + yearsmarried + religiousness + occupation + rating)
# 
# ## so it can be used easily in a pipeline.
# Affairs %>%
#   ntbt_tobit(affairs ~ age + yearsmarried + religiousness + occupation + rating)
# ## End(Not run)

Run the code above in your browser using DataLab