powered by
Creates a matrix displaying updated variable importance on the diagonal and variable interaction on the off-diagonal.
viviUpdate(mat, newImp, reorder = TRUE)
A matrix of values, of class vivid, with updated variable importances.
A matrix, such as that returned by vivi.
vivi
A named vector of variable importances.
If TRUE (default) uses DendSer to reorder the matrix of interactions and variable importances.
f <- lm(Sepal.Length ~ ., data = iris[, -5]) m <- vivi(iris[, -5], f, "Sepal.Length") corimp <- abs(cor(iris[, -5])[1, -1]) viviUpdate(m, corimp) # use correlation as updated importance
Run the code above in your browser using DataLab