library("MASS") # for Boston Housing data
library("randomForest")
model <-randomForest(medv~., data=Boston)
summary(model)
imp <- importance(model)
ind <- order(imp, decreasing=T)
imp[ind,]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.