3
有沒有一種方法可以在Python中找到r置信區間?使用等效於Python中cor.test的R's
cor.test(m, h)
Pearson's product-moment correlation
data: m and h
t = 0.8974, df = 4, p-value = 0.4202
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.6022868 0.9164582
sample estimates:
cor
0.4093729
在Python我可以計算出R(COR):
在R I可以做類似
r,p = scipy.stats.pearsonr(df.age, df.pets)
但是,這並不返回將R置信區間。
謝謝你,解決它。我想知道爲什麼(如果)statsmodels和/或scipy還沒有提供這個。 – ComposedTreatment
那麼,我也很驚訝,或者我沒有足夠好地搜索堆棧。 – Zero