Skip to content

Commit

Permalink
add precision & recall score to dashboard, add tooltip description
Browse files Browse the repository at this point in the history
  • Loading branch information
armandleopold committed Mar 17, 2024
1 parent 8f4fafe commit 9cc8fb0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions data_compare_pack/pack_conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,36 @@
},
"charts": {
"overview": [
{
"metric_key": "score",
"chart_type": "text",
"tooltip": {
"title": "Comparison Score [Higher is better]",
"content": "Proportion of data in source that matches the target."
},
"display_title": true,
"justify": true
},
{
"metric_key": "precision",
"chart_type": "text",
"tooltip": {
"title": "Precision [Higher is better]",
"content": "The portion of rows in the target that are correctly represented in the source dataset"
},
"display_title": true,
"justify": true
},
{
"metric_key": "recall",
"chart_type": "text",
"tooltip": {
"title": "Recall [Higher is better]",
"content": "The portion of rows in the source that are correctly represented in the target dataset"
},
"display_title": true,
"justify": true
},
{
"metric_key": "score",
"chart_type": "text",
Expand Down

0 comments on commit 9cc8fb0

Please sign in to comment.