Skip to content

Commit

Permalink
Bench analysis: Print all top rows when asked for
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Jul 26, 2024
1 parent b761538 commit b57c0f6
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 b57c0f6

Please sign in to comment.