View source: R/AlphaSensCurve.R
AlphaSensAnalysis | R Documentation |
Obtain sensitivity alpha-curves associated to MLP function obtained from
the sensitivities returned by SensAnalysisMLP
.
AlphaSensAnalysis(
sens,
tol = NULL,
max_alpha = 15,
curve_equal_origin = FALSE,
inp_var = NULL,
line_width = 1,
title = "Alpha curve of Lp norm values",
alpha_bar = 1,
kind = "line"
)
sens |
sensitivity object returned by |
tol |
difference between M_alpha and maximum sensitivity of the sensitivity of each input variable |
max_alpha |
maximum alpha value to analyze |
curve_equal_origin |
make all the curves begin at (1,0) |
inp_var |
|
line_width |
|
title |
|
alpha_bar |
|
kind |
|
alpha-curves of the MLP function
mod <- RSNNS::mlp(simdata[, c("X1", "X2", "X3")], simdata[, "Y"],
maxit = 1000, size = 15, linOut = TRUE)
sens <- SensAnalysisMLP(mod, trData = simdata,
output_name = "Y", plot = FALSE)
AlphaSensAnalysis(sens)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.