gpt4 book ai didi

python - boot() 在 python 中等效?

转载 作者:太空狗 更新时间:2023-10-30 00:18:37 24 4
gpt4 key购买 nike

有没有等价于boot and boot.ci的在 python ?在 R 我会做

library(boot)
result <- boot(data,bootfun,10000)
boot.ci(result)

最佳答案

我可以指出 python 中的特定 Bootstrap 用法。我假设您正在寻找类似的方法来在 python 中进行引导,就像我们在 R 中所做的那样。

import numpy as np
import bootstrapped.bootstrap as bs
import bootstrapped.stats_functions as bs_stats

mean = 100
stdev = 10

population = np.random.normal(loc=mean, scale=stdev, size=50000)

# take 1k 'samples' from the larger population
samples = population[:1000]

print(bs.bootstrap(samples, stat_func=bs_stats.mean))
>> 100.08 (99.46, 100.69)

print(bs.bootstrap(samples, stat_func=bs_stats.std))
>> 9.49 (9.92, 10.36)

这里具体用到的包是bootstrapped.bootstrapbootstrapped.stats_functions。您可以探索有关此模块的更多信息 here

关于python - boot() 在 python 中等效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49522226/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com