Complete Excel output for bestResults with Friedman test

This commit is contained in:
2023-09-28 18:52:37 +02:00
parent cfcf3c16df
commit 9d3d9cc6c6
6 changed files with 139 additions and 33 deletions

View File

@@ -8,9 +8,10 @@ using namespace std;
using json = nlohmann::json;
namespace platform {
class BestResultsExcel : ExcelFile {
public:
BestResultsExcel(string score, vector<string> models, vector<string> datasets, json table, bool friedman);
BestResultsExcel(string score, vector<string> models, vector<string> datasets, json table, bool friedman, double significance);
~BestResultsExcel();
void build();
private:
@@ -24,6 +25,7 @@ namespace platform {
vector<string> datasets;
json table;
bool friedman;
double significance;
int modelNameSize = 12; // Min size of the column
int datasetNameSize = 25; // Min size of the column
};