I received some code that I've plugged my data into and I'm not sure how to interpret the results.
regressor <- randomForest(response ~ . , data = predictors, importance=TRUE) # fit the random forest with default parameter
caret::varImp(regressor, conditional=TRUE) # conditional=True, adjusts for correlations between predictors
This is a small subset of my results:
Overall
var1 6.8107556
var2 5.3135349
var3 5.5066138
var4 3.5830743
var5 -0.2476780
var6 -2.5929377
Am I correct to assume that the negative values mean that those variables are of low importance?