I have created a random forest prediction model in R using the randomForest function:
model = randomForest(classification ~., data=train, ntree=100, proximity=T)
Next I plotted the model in order to see the overall error of the model:
plot(model, log="y")
This gives me the following plot:
My question is how do I put a legend on this so that I can see which color corresponds to each value in the factor used for the classification? The factor variable is data$classification
. I can't figure out the legend() call to do this.
The plot S3 method plot use matplot
to plot random forest model. You should add legend manually. This should be a good start:
library(randomForest)
model = randomForest(Species ~., data=iris, ntree=100, proximity=T)
layout(matrix(c(1,2),nrow=1),
width=c(4,1))
par(mar=c(5,4,4,0)) #No margin on the right side
plot(model, log="y")
par(mar=c(5,0,4,2)) #No margin on the left side
plot(c(0,1),type="n", axes=F, xlab="", ylab="")
legend("top", colnames(model$err.rate),col=1:4,cex=0.8,fill=1:4)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With