Learn R Programming

intubate (version 1.0.0)

SwarmSVM: Interfaces for SwarmSVM package for data science pipelines.

Description

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

Usage

ntbt_alphasvm(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(SwarmSVM)
# 
# ## ntbt_alphasvm: Support Vector Machines taking initial alpha values
# data(iris)
# ## Original function to interface
# alphasvm(Species ~ ., data = iris)
# 
# ## The interface puts data as first parameter
# ntbt_alphasvm(iris, Species ~ .)
# 
# ## so it can be used easily in a pipeline.
# iris %>%
#   ntbt_alphasvm(Species ~ .)
# ## End(Not run)

Run the code above in your browser using DataLab