Postgresql – How to count classification_report ( precision recall f1-score support) in sql
I have table with classification result of binary classification. something like id, predict_value, real_value 1, true, true 2, true, false ... I want to get with sql classification_report, something like class precision recall f1-score support False 0.97 1.00 0.98 57241…