def mann_whitney_p_values(self): """Mann Whitney U test result.""" return stat_tests.two_sided_u_test(self._benchmark_snapshot_df)
def bug_mann_whitney_p_values(self): """Mann Whitney U test result based on bugs covered.""" return stat_tests.two_sided_u_test(self._benchmark_snapshot_df, key='bugs_covered')