19 #ifndef _RANKANALYZER_H_
20 #define _RANKANALYZER_H_
26 namespace Victor {
namespace Lobo {
43 void printCorrelation(
char* intro,
unsigned int index);
44 void printCorrelation(
char* intro, vector<double> data);
45 void printTopXResults(
unsigned int top,
string topFile,
46 double maxScore = 1000.0);
49 void load(istream& inFile,
unsigned int select);
50 void calcStatistics();
63 static const unsigned int MAX_COL = 11;
64 static const unsigned int MAX_LOOP = 1000;
68 vector< vector<double> > zScore;
69 vector< vector<double> > col;
70 vector< vector<double> > result;
71 vector< vector<double> > resScore;
75 #endif //_RANKANALYZER_H_
This class implements functions to analyze the ranking output of lobo.
Definition: RankAnalyzer.h:33