attStats | R Documentation |
attStats
shows a summary of a Boruta run in an attribute-centred way.
It produces a data frame containing some importance stats as well as the number of hits that attribute scored and the decision it was given.
attStats(x)
x |
an object of a class Boruta, from which attribute stats should be extracted. |
A data frame containing, for each attribute that was originally in information system, mean, median, maximal and minimal importance, number of hits normalised to number of importance source runs performed and the decision copied from finalDecision
.
When using a Boruta object generated by a TentativeRoughFix
, the resulting data frame will consist a rough-fixed decision.
x
has to be made with holdHistory
set to TRUE
for this code to run.
## Not run: library(mlbench); data(Sonar) #Takes some time, so be patient Boruta(Class~.,data=Sonar,doTrace=2)->Bor.son print(Bor.son) stats<-attStats(Bor.son) print(stats) plot(normHits~meanImp,col=stats$decision,data=stats) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.