shorten dataset name to maximum length

This commit is contained in:
2024-03-16 23:37:37 +01:00
parent 9c11dee019
commit 67487ffce1
4 changed files with 11 additions and 9 deletions

View File

@@ -413,7 +413,7 @@ namespace platform {
break;
case 'r':
if (output_type == OutputType::DATASETS) {
list_datasets(STATUS_OK, STATUS_COLOR);
list(STATUS_OK, STATUS_COLOR);
break;
}
if (indexList) {

View File

@@ -5,14 +5,14 @@
namespace platform {
const int DatasetsConsole::BALANCE_LENGTH = 75;
void DatasetsConsole::split_lines(std::string line, const std::string& balance)
void DatasetsConsole::split_lines(int name_len, std::string line, const std::string& balance)
{
auto temp = std::string(balance);
while (temp.size() > DatasetsConsole::BALANCE_LENGTH - 1) {
auto part = temp.substr(0, DatasetsConsole::BALANCE_LENGTH);
line += part + "\n";
body.push_back(line);
line = string(52, ' ');
line = string(name_len + 22, ' ');
temp = temp.substr(DatasetsConsole::BALANCE_LENGTH);
}
line += temp + "\n";
@@ -36,10 +36,12 @@ namespace platform {
header.clear();
body.clear();
auto datasets = platform::Datasets(false, platform::Paths::datasets());
auto loc = std::locale("es_ES");
auto loc = std::locale("es_ES.UTF-8");
std::stringstream sheader;
auto datasets_names = datasets.getNames();
int maxName = std::max(size_t(7), (*max_element(datasets_names.begin(), datasets_names.end(), [](const std::string& a, const std::string& b) { return a.size() < b.size(); })).size());
std::vector<std::string> header_labels = { " #", "Dataset", "Sampl.", "Feat.", "Cls", "Balance" };
std::vector<int> header_lengths = { 3, 30, 6, 5, 3, DatasetsConsole::BALANCE_LENGTH };
std::vector<int> header_lengths = { 3, maxName, 6, 5, 3, DatasetsConsole::BALANCE_LENGTH };
sheader << Colors::GREEN();
for (int i = 0; i < header_labels.size(); i++) {
sheader << setw(header_lengths[i]) << left << header_labels[i] << " ";
@@ -58,7 +60,7 @@ namespace platform {
line.imbue(loc);
auto color = num % 2 ? Colors::CYAN() : Colors::BLUE();
line << color << setw(3) << right << num++ << " ";
line << setw(30) << left << dataset << " ";
line << setw(maxName) << left << dataset << " ";
datasets.loadDataset(dataset);
auto nSamples = datasets.getNSamples(dataset);
line << setw(6) << right << nSamples << " ";
@@ -71,7 +73,7 @@ namespace platform {
oss << sep << std::setprecision(2) << fixed << (float)number / nSamples * 100.0 << "% (" << number << ")";
sep = " / ";
}
split_lines(line.str(), oss.str());
split_lines(maxName, line.str(), oss.str());
// Store data for Excel report
data[dataset] = json::object();
data[dataset]["samples"] = nSamples;

View File

@@ -20,7 +20,7 @@ namespace platform {
json& getData() { return data; }
void report();
private:
void split_lines(std::string line, const std::string& balance);
void split_lines(int name_len, std::string line, const std::string& balance);
std::vector<std::string> header, body;
json data;
};

View File

@@ -91,7 +91,7 @@ namespace platform {
totalScore += r["score"].get<double>();
}
if (data["results"].size() == 1 || selectedIndex != -1) {
sbody << std::string(MAXL, '*') << std::endl;
sbody << Colors::MAGENTA() << std::string(MAXL, '*') << std::endl;
if (lastResult.find("notes") != lastResult.end()) {
if (lastResult["notes"].size() > 0) {
sbody << headerLine("Notes: ");