如圖片所述,我已經透過 shapiro test ,將資料的統計量與p value求出,但p value是跟著統計量一起輸出在下方的輸出結果。如果我想要在寫if else來判斷輸出結果中的pvalue,要如何defined pvalue,因為要defined pvalue後才能寫if else。麻麻煩大家了,這個困擾我好久....
是類似這樣嗎?
shapiro_test = scipy.stats.shapiro(fitted.resid)
statistic = shapiro_test.statistic
pvalue = shapiro_test.pvalue
if pvalue > 0.05:
# 後續判斷