def main():
    csv_file_path = get_csv_file_path()
    scores, classifications = load_csv_file(csv_file_path)
    sum_scores = get_sum_of_scores(scores)

    plot_strategies_score(sum_scores, classifications,
                          'Amount by classification', 'Amount', 0.0, 55.0, 5.0)
def main():
    csv_file_path = get_csv_file_path()
    scores, classifications = load_csv_file(csv_file_path)
    sum_scores = get_sum_of_scores(scores)

    plot_strategies_score(sum_scores, classifications,
                          'Amount by classification', 'Amount', 0.0, 55.0,
                          5.0)
def main():
    csv_file_path = get_csv_file_path()
    values, metrics = load_csv_file(csv_file_path)
    metrics_values = get_metrics_values(values, metrics)

    plot_cross_validation_averages(metrics_values)