Description Usage Arguments Value Examples
Optim.NN
function allows to find the best NN
.
1 2 3 |
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 |
maxhiddenlayers |
the high number of hidden layers for the neural network considers. |
maxit |
the maximum allowable number of weights. There is no intrinsic limit in the code, but increasing |
MaxNWts |
maximum number of iterations. Default 500. |
... |
arguments passed to |
An object of class Optim
. See Optim.object
1 2 3 4 5 6 7 | if(interactive()){
## Load a Dataset
data(AustralianCredit)
## Generate a model
modelFit <- Optim.NN(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.