Nền tảng Suy luận trong Python
Paul Savala
Assistant Professor of Mathematics


Phương pháp Fisher
Kết hợp bằng chứng từ nhiều nghiên cứu
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
Nền tảng Suy luận trong Python