Fix excel constructor

This commit is contained in:
2024-02-29 13:20:37 +01:00
parent c69dc08134
commit b68d520726
8 changed files with 20 additions and 34 deletions

View File

@@ -37,6 +37,7 @@ namespace platform {
setProperties("Best Results");
int maxDatasetName = (*max_element(datasets.begin(), datasets.end(), [](const std::string& a, const std::string& b) { return a.size() < b.size(); })).size();
datasetNameSize = std::max(datasetNameSize, maxDatasetName);
createFormats();
}
void BestResultsExcel::reportAll(const std::vector<std::string>& models, const json& table, const std::map<std::string, std::map<std::string, float>>& ranks, bool friedman, double significance)
{