Description Usage Arguments Details Value Author(s) Examples
Interfaces to modeltools functions that can be used
in a pipeline implemented by magrittr.
1 2  | 
data | 
 data frame, tibble, list, ...  | 
... | 
 Other arguments passed to the corresponding interfaced function.  | 
Interfaces call their corresponding interfaced function.
Object returned by interfaced function.
Roberto Bertolusso
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24  | ## Not run: 
library(intubate)
library(magrittr)
library(modeltools)
data("iris")
## Original function to interface
ModelEnvFormula(Species + Petal.Width ~ . -1, data = iris,
                subset = sample(1:150, 10))
ParseFormula(Species + Petal.Width ~ . -1, data = iris)
## The interface puts data as first parameter
ntbt_ModelEnvFormula(iris, Species + Petal.Width ~ . -1, subset = sample(1:150, 10))
ntbt_ParseFormula(iris, Species + Petal.Width ~ . -1)
## so it can be used easily in a pipeline.
iris %>%
  ntbt_ModelEnvFormula(Species + Petal.Width ~ . -1, subset = sample(1:150, 10))
iris %>%
  ntbt_ParseFormula(Species + Petal.Width ~ . -1)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.