Description Usage Arguments Details Value Author(s) Examples
Interfaces to e1071 functions that can be used
in a pipeline implemented by magrittr.
| 1 | 
| 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 | ## Not run: 
library(intubate)
library(magrittr)
library(e1071)
## Original function to interface
model <- svm(Species ~ ., iris)
summary(model)
## The interface reverses the order of data and formula
model <- ntbt_svm(iris, Species ~ .)
summary(model)
## so it can be used easily in a pipeline.
iris %>%
  ntbt_svm(Species ~ .) %>%
  summary()
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.