Data frame from which variables specified in formula are preferentially to be taken.
p
A percentage of training elements
criteria
This variable selects the criteria to select the best threshold. The default value is success_rate.
includedata
logicals. If TRUE the training and testing datasets are returned.
seed
a single value, interpreted as an integer, or NULL. The default value is NULL, but for future checks of the model or models generated it is advisable to set a random seed to be able to reproduce it.
# NOT RUN {if(interactive()){
## Load a Datasetdata(AustralianCredit)
## Generate a modelmodelFit <- Optim.SVM(Y~., AustralianCredit, p = 0.7, seed=2018)
modelFit
}
# }