Skip to content

Commit

Permalink
Ensure data is sorted.
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Jul 26, 2023
1 parent 64104be commit 2945253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/pkgeval_analysis/main.jl
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ function simple_performance_plot(df)
new_df = DataFrame(date = Date[],
ratio = Float64[],
datapoints = Int[])
for group in groupby(df, [:date])
for group in groupby(df, [:date]; sort=true)
date = first(group.date)

reference_duration = sum(group.reference_duration)
Expand Down

0 comments on commit 2945253

Please sign in to comment.