Learn R Programming

sisireg (version 1.1.2)

fii_model: Factor-wise Influence Indicator (Model-fii) for a given ssrmlp model

Description

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.

Usage

fii_model(W)

Value

fii

array of influence indicators

Arguments

W

a trained ssrmlp model

Author

Dr. Lars Metzner

Examples

Run this code
# \donttest{
# 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)
# }

Run the code above in your browser using DataLab