getArgs: Get all arguments of a machine learning call

Description Usage Arguments Value Author(s) Examples

Description

Converts a machine learning call to a named list of all its arguments.

Usage

1
getArgs(MLCall)

Arguments

MLCall

Your call to a machine learning algorithm. All arguments in this call should be named.

Value

A named list of all arguments present in your machine learning call

Author(s)

Wannes Rosiers

Examples

1
2
3
4
5
6
## Not run: 
library(e1071)
MLCall <- "svm(formula = Species ~ ., data = iris)"
getArgs(MLCall)

## End(Not run)

parallelML documentation built on May 2, 2019, 2:44 a.m.