简体   繁体   English

Python:实施均值95%置信区间?

[英]Python: Implement mean of means 95% Confidence Interval?

How can this solution be implemented using pandas/python? 如何使用pandas / python实现此解决方案 This question concerns the implementation of finding a 95% CI around a mean of means using this stats.stackexchange solution . 这个问题涉及使用此stats.stackexchange解决方案在均值周围寻找95%CI的实现。

import pandas as pd
from IPython.display import display
import scipy
import scipy.stats as st 
import scikits.bootstrap as bootstraps

data = pd.DataFrame({
     "exp1":[34, 41, 39] 
    ,"exp2":[45, 51, 52]
    ,"exp3":[29, 31, 35]
}).T

data.loc[:,"row_mean"] = data.mean(axis=1)
data.loc[:,"row_std"] = data.std(axis=1)
display(data)

 <table border="1" class="dataframe"> <thead> <tr style="text-align: right;"> <th></th> <th>0</th> <th>1</th> <th>2</th> <th>row_mean</th> <th>row_std</th> </tr> </thead> <tbody> <tr> <th>exp1</th> <td>34</td> <td>41</td> <td>39</td> <td>38.000000</td> <td>2.943920</td> </tr> <tr> <th>exp2</th> <td>45</td> <td>51</td> <td>52</td> <td>49.333333</td> <td>3.091206</td> </tr> <tr> <th>exp3</th> <td>29</td> <td>31</td> <td>35</td> <td>31.666667</td> <td>2.494438</td> </tr> </tbody> </table> 

mean_of_means = data.row_mean.mean()
std_of_means = data.row_mean.std()
confidence = 0.95
print("mean(means): {}\nstd(means):{}".format(mean_of_means,std_of_means))
  • mean(means): 39.66666666666667 平均值(均值):39.66666666666667
  • std(means): 8.950481054731702 标准差(均值):8.950481054731702

1st incorrect attempt (zscore): 第1次错误尝试(zscore):

zscore = st.norm.ppf(1-(1-confidence)/2)
lower_bound = mean_of_means - (zscore*std_of_means)
upper_bound = mean_of_means + (zscore*std_of_means)
print("95% CI = [{},{}]".format(lower_bound,upper_bound))
  • 95% CI = [22.1,57.2] ( incorrect solution) 95%CI = [22.1,57.2]( 错误的解决方案)

2nd incorrect attempt (tscore): 第二次错误尝试(分数):

tscore = st.t.ppf(1-0.05, data.shape[0])
lower_bound = mean_of_means - (tscore*std_of_means)
upper_bound = mean_of_means + (tscore*std_of_means)
print("95% CI = [{},{}]".format(lower_bound,upper_bound))
  • 95% CI = [18.60,60.73] ( incorrect solution) 95%CI = [18.60,60.73]( 错误的解决方案)

3rd incorrect attempt (boostrap): 第三次不正确的尝试(boostrap):

CIs = bootstraps.ci(data=data.row_mean, statfunction=scipy.mean,alpha=0.05)
  • 95% CI = [31.67, 49.33] ( incorrect solution) 95%CI = [31.67,49.33]( 错误的解决方案)

How can this solution be implemented using pandas/python to get the correct solution below? 如何使用pandas / python实现此解决方案以在下面获取正确的解决方案?

  • 95% CI = [17.4 to 61.9] ( correct solution) 95%CI = [17.4至61.9]( 正确的解决方案)

Thank you Jon Bates. 谢谢乔恩·贝茨。

import pandas as pd
import scipy
import scipy.stats as st 

data = pd.DataFrame({
     "exp1":[34, 41, 39] 
    ,"exp2":[45, 51, 52]
    ,"exp3":[29, 31, 35]
}).T

data.loc[:,"row_mean"] = data.mean(axis=1)
data.loc[:,"row_std"] = data.std(axis=1)

tscore = st.t.ppf(1-0.025, data.shape[0]-1)

print("mean(means): {}\nstd(means): {}\ntscore: {}".format(mean_of_means,std_of_means,tscore))

lower_bound = mean_of_means - (tscore*std_of_means/(data.shape[0]**0.5))
upper_bound = mean_of_means + (tscore*std_of_means/(data.shape[0]**0.5))

print("95% CI = [{},{}]".format(lower_bound,upper_bound))

mean(means): 39.66666666666667 平均值(均值):39.66666666666667
std(means): 8.950481054731702 标准差(均值):8.950481054731702
tscore: 4.302652729911275 tscore:4.302652729911275
95% CI = [17.432439139464606,61.90089419386874] 95%CI = [17.432439139464606,61.90089419386874]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM