fii_prediction | R Documentation |
The Prediction-fii depicts the overall influence of the given input factors on the resulting prediction from a trained ssrmlp model. For computation the components of the input vectors a taken separately as input for the model.
fii_prediction(W, x)
W |
a trained ssrmlp model |
x |
a matrix of input vectors |
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_prediction(W, X)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.