powered by
Default plot method for Boruta objects, showing boxplots of attribute importances over run.
# S3 method for Boruta plot( x, colCode = c("green", "yellow", "red", "blue"), sort = TRUE, whichShadow = c(TRUE, TRUE, TRUE), col = NULL, xlab = "Attributes", ylab = "Importance", ... )
Invisible copy of x.
x
an object of a class Boruta.
a vector containing colour codes for attribute decisions, respectively Confirmed, Tentative, Rejected and shadow.
controls whether boxplots should be ordered, or left in original order.
a logical vector controlling which shadows should be drawn; switches respectively max shadow, mean shadow and min shadow.
standard col attribute. If given, suppresses effects of colCode.
col
colCode
X axis label that will be passed to boxplot.
boxplot
Y axis label that will be passed to boxplot.
additional graphical parameter that will be passed to boxplot.
if (FALSE) { library(mlbench); data(HouseVotes84) na.omit(HouseVotes84)->hvo #Takes some time, so be patient Boruta(Class~.,data=hvo,doTrace=2)->Bor.hvo print(Bor.hvo) plot(Bor.hvo) }
Run the code above in your browser using DataLab