Skip to content

Commit

Permalink
Bench analysis: Print all top rows when asked for (#2089)
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber authored Jul 27, 2024
1 parent 94c86b6 commit ad57b1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion benchmarks/scripts/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ def case_top(alpha, N, algname, ct_point_name, case_dfs):

for subbench in case_dfs:
case_dfs[subbench] = extract_complete_variants(case_dfs[subbench])
print(extract_scores(case_dfs).head(N))
with pd.option_context('display.max_rows', None):
print(extract_scores(case_dfs).head(N))


def top(args):
Expand Down

0 comments on commit ad57b1e

Please sign in to comment.