Foundations of Inference in Python
Paul Savala
Assistant Professor of Mathematics
Fisher's method
Combines evidence from multiple studies
p_values = [0.052, 0.12, 0.09, 0.051]
fishers_stat, p_value = stats.combine_pvalues(p_values)
print(p_value < 0.05)
TRUE
p_values = [0.01, 0.51, 0.81, 0.49]
fishers_stat, p_value = stats.combine_pvalues(p_values)
print(p_value < 0.05)
FALSE
Foundations of Inference in Python