コード例 #1
0
 def mann_whitney_p_values(self):
     """Mann Whitney U test result."""
     return stat_tests.two_sided_u_test(self._benchmark_snapshot_df)
コード例 #2
0
 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')