SwarmSVM: Interfaces for SwarmSVM package for data science pipelines.

Description Usage Arguments Details Value Author(s) Examples

Description

Interfaces to SwarmSVM 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
## 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)

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