Skip to content

Commit ee36370

Browse files
Fix build break: 2
1 parent baea859 commit ee36370

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/score.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def doPlot(value_arr: np.ndarray, xlabel: str):
284284
doPlot(value_arr, xlabel=metric_name)
285285
if is_plot_species:
286286
if cn.AGGREGATION_TYPE in df.columns:
287-
species_df = df[df[cn.AGGREGATION_TYPE] == cn.AGGREGATION_TYPE_SPECIES]
287+
species_df = df[df[cn.AGGREGATION_TYPE] != cn.AGGREGATION_TYPE_MODEL]
288288
if not species_df.empty and metric_name in species_df.columns:
289289
value_arr = np.array(species_df[metric_name].values)
290290
doPlot(value_arr, xlabel=metric_name)

0 commit comments

Comments
 (0)