Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
rulevis.cxx
Go to the documentation of this file.
1 #include "TMVA/rulevis.h"
2 
3 
4 // This macro plots the distributions of the different input variables overlaid on
5 // the sum of importance per bin.
6 // The scale goes from violett (no importance) to red (high importance).
7 // Areas where many important rules are active, will thus be very red.
8 //
9 // input: - Input file (result from TMVA),
10 // - normal/decorrelated/PCA
11 // - use of TMVA plotting TStyle
12 void TMVA::rulevis( TString fin , TMVAGlob::TypeOfPlot type , bool useTMVAStyle )
13 {
14  //rulevisHists(fin,type,useTMVAStyle);
15  rulevisCorr(fin,type,useTMVAStyle);
16 }