rankingEAT | R Documentation |
This function computes the variable importance through an Efficiency Analysis Trees model.
rankingEAT(object, barplot = TRUE, threshold = 70, digits = 2)
object |
An |
barplot |
|
threshold |
Importance score value in which a line is graphed. |
digits |
Decimal units. |
data.frame
with the importance scores and a barplot representing the the variable importance if barplot = TRUE
.
simulated <- X2Y2.sim(N = 50, border = 0.2) EAT_model <- EAT(data = simulated, x = c(1,2), y = c(3, 4)) rankingEAT(object = EAT_model, barplot = TRUE, threshold = 70, digits = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.