simdata | R Documentation |
data.frame
with 2000 rows of 4 columns with 3
input variables X1, X2, X3
and one output variable Y
.
The data is already scaled, and has been generated using the following code:
set.seed(150)
simdata <- data.frame(
"X1" = rnorm(2000, 0, 1),
"X2" = rnorm(2000, 0, 1),
"X3" = rnorm(2000, 0, 1)
)
simdata$Y <- simdata$X1^2 + 0.5*simdata$X2 + 0.1*rnorm(2000, 0, 1)
A data frame with 2000 rows and 4 variables:
Random input 1
Random input 2
Random input 3
Output
Jaime Pizarroso Gonzalo
Pizarroso J, Portela J, Muñoz A (2022). NeuralSens: Sensitivity Analysis of Neural Networks. Journal of Statistical Software, 102(7), 1-36.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.