fii_model | R Documentation |
The Model-fii depicts the overall influence of the input factors on the resulting trained ssrmlp model. For computation a unit matrix is used to accumulate the weights for each factor separately.
fii_model(W)
W |
a trained ssrmlp model |
fii |
array of influence indicators |
Dr. Lars Metzner
# generate data
set.seed(42)
x <- rnorm(300)
y <- rnorm(300)
z <- rnorm(300) + atan2(x, y)
# coordinates
X <- matrix(cbind(x,y), ncol = 2)
Y <- as.double(z)
# Training
W <- ssrmlp_train(X, Y)
fii_model(W)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.