systemfit: Interfaces for systemfit package for data science pipelines.

Description Usage Arguments Details Value Author(s) Examples

Description

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


## ntbt_systemfit: Linear Equation System Estimation
data("Kmenta")
eqDemand <- consump ~ price + income
eqSupply <- consump ~ price + farmPrice + trend
system <- list( demand = eqDemand, supply = eqSupply )


## Original function to interface
fitols <- systemfit(system, data = Kmenta)
print(fitols)

## The interface puts data as first parameter
fitols <- ntbt_systemfit(Kmenta, system, "<|F|>")
## Need "<|F|>" (at least for now) to clarify it is a formula
print(fitols)

## so it can be used easily in a pipeline.
## Need "<|F|>" (at least for now) to clarify it is a formula
Kmenta %>%
  ntbt_systemfit(system, "<|F|>") %>%
  print()

## End(Not run)

intubate documentation built on May 2, 2019, 2:46 p.m.