发布网友 发布时间:2022-04-29 19:57
共3个回答
懂视网 时间:2022-04-20 01:15
bootstrap置信区间:
假设总体的分布F未知,但有一个容量为n的来自分布F的数据样本,自这一样本按有放回抽样的方法抽取一个容量为n的样本,这种样本称为bootstrap样本。相继地、独立地自原始样本中抽取很多个bootstrap样本,利用这些样本对总体F进行统计推断,这种方法称为非参数bootstrap方法,又称自助法。
使用bootstrap方法可以求得变量(参数)的置信区间,称作bootstrap置信区间。
bootstrap置信区间:
使用Python计算bootstrap置信区间:
这里以一维数据为例,取样本均值作为样本估计量。代码如下:
import numpy as np def average(data): return sum(data) / len(data) def bootstrap(data, B, c, func): """ 计算bootstrap置信区间 :param data: array 保存样本数据 :param B: 抽样次数 通常B>=1000 :param c: 置信水平 :param func: 样本估计量 :return: bootstrap置信区间上下限 """ array = np.array(data) n = len(array) sample_result_arr = [] for i in range(B): index_arr = np.random.randint(0, n, size=n) data_sample = array[index_arr] sample_result = func(data_sample) sample_result_arr.append(sample_result) a = 1 - c k1 = int(B * a / 2) k2 = int(B * (1 - a / 2)) auc_sample_arr_sorted = sorted(sample_result_arr) lower = auc_sample_arr_sorted[k1] higher = auc_sample_arr_sorted[k2] return lower, higher if __name__ == '__main__': result = bootstrap(np.random.randint(0, 50, 50), 1000, 0.95, average) print(result)
输出:
(20.48, 28.32)
推荐:bootstrap入门教程
热心网友 时间:2022-04-19 22:23
Standardized Indirect Effects - Lower Bounds (PC) \ Standardized Indirect Effects - Upper Bounds (PC) \ Standardized Indirect Effects - Two Tailed Significance (PC) 。方杰的文章说:“将B=1000个中介效应估计值ab按数值大小排序,得到序列C,用序列C的第2. 5百分位数和第97. 5百分位数来估计95%的中介效应置信区间” Amos的output里面并没有找到1000个中介效应的值呀,请问在哪里呢?怎么样得到95%的中介效应置信区间?
我要得到上图的效果。原文的作者是
抽取 1000 个 Bootstra
样本, 然后根据这些样本拟合模型 1, 生成并保存
1000 个中介效应的估计值, 形成一个近似抽样分
布, 同时计算出中介效应的平均路径值, 并将这些
效应值按数值大小排序, 用第 2.5 百分位数和第
97.5 百分位数估计 95%的中介效应置信区间。
热心网友 时间:2022-04-19 23:41
bootstrap的结果一般需要你看95%的置信区间(即前2.5%和后2.5%的临界点),若95%置信包含了数字0,则不显著,反之显著