| Library: | nn |
| See also: | nnrnet ann |
| Macro: | nnrinfo | |
| Description: | shows information about the net in the output window. |
| Usage: | nnrinfo(net) | |
| Input: | ||
| net | composed object from nnrnet | |
x = read("kredit1")
t = read("tkredit")
y = x[,1]
x = x[,2:21]
x = (x-min(x))./(max(x)-min(x))
net = nnrnet (x, y, matrix(rows(x)), 10)
nnrinfo (net)
runs a neural network with 10 hidden units for the kredit data of Fahrmeier and Hammerle and computes the predicted values. At last it shows the results.
| Library: | nn |
| See also: | nnrnet ann |