Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Fix average rank ranking: * Need to replace `NaN` in the `experiment_df` with `0`; otherwise, it may cause counterintuitive ranking in rare cases (e.g., two fuzzer both found zero bug on one benchmark and `NaN` on the rest. They are ranked differently because one got 0 on benchmark `A` and the other got 0 on `B`, where some other fuzzer found some bug in `A` but no one found any bug in `B`.) * Use `min` as the ranking method. * Do not need `na_option` as `NaN` is now `0`. Otherwise, it should at least be changed to `bottom`. 2. Fix average score ranking: * Replace `NaN` in the `experiment_df` with `0`.
- Loading branch information