Description Usage Arguments Value Examples
This function allows to find the best kernel for tune your support vector machine (SVM).
1 2 |
formula |
A formula of the form |
data |
Data frame from which variables specified in |
p |
A percentage of training elements |
criteria |
This variable selects the criteria to select the best threshold. The default value is |
includedata |
logicals. If TRUE the training and testing datasets are returned. |
seed |
a single value, interpreted as an integer, or |
... |
arguments passed to |
An object of class Optim
. See Optim.object
1 2 3 4 5 6 7 8 9 10 | if(interactive()){
## Load a Dataset
data(AustralianCredit)
## Generate a model
modelFit <- Optim.SVM(Y~., AustralianCredit, p = 0.7, seed=2018)
modelFit
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.