Bootstrap Confidence Interval 90%
現在この質問をフォロー中です
- フォローしているコンテンツ フィードに更新が表示されます。
- コミュニケーション基本設定に応じて電子メールを受け取ることができます。
エラーが発生しました
ページに変更が加えられたため、アクションを完了できません。ページを再度読み込み、更新された状態を確認してください。
古いコメントを表示
We were asked to calculate the 90% confidence interval for a given dataset using bootci function. This was my line in Matlab
Pbci = bootci(2000,{@mean,Pb},'alpha',.1)%90 confidence interval
Is this the correct way?
Next we were asked to use the bootstrap technique to estimate the 90% confidence interval for the probability that the mean of Pb exceeds the MCL (i.e., 50ppm). Would i use Pbci = bootci(2000,{@mean,Pb},'weights',) for this? If so what do i put as my constraints for the weights part?
採用された回答
Adam Danz
2019 年 10 月 26 日
"We were asked to calculate the 90% confidence interval [using bootci()]... Is this the correct way?"
To determine if it's the correct way, compare the results with a lower level computation of the confidence intervals. Not only will this confirm that you're using the bootci() function correctly but you'll get a better understanding of how those intervals are computed.
Let's say your data contain 1000 samples and you're bootstrapping the mean of your data 2000 times. bootci() resamples the data with replacement 2000 times and computes the mean on each iteration. That means on each of the 2000 iterations, it randomly chooses 1000 samples, many of which will be duplicates (it uses the randi() function), and computes the mean. It then uses the 2000 means that were computed to determine the CI. There are several methods of doing this (explained under "types" in the documentation) but with enough bootstraps, the distribution of means should be normal (thanks to the Central Limit Theorem) and the CI type shouldn't make too much of a difference (though I typically recommend the percentile method which is not dependent on the shape of the distribution).
Follow thie brief tutorial below where the CIs are computing for a random dataset using bootci() and using a lower-level, direct computation of the CIs. As you can see by the figure it produces, the results are nearly the same. The only differences are due to a different randomized resampling of the data between methods.
% Create random data from a normal distribution
% with mean 28.25 and sd 8.5.
data = (randn(1,100000)*8.5 + 28.25)';
% Run bootci (percentile method is chosen since that's how we're
% computing it below in the other method.
nBoot = 2000; %number of bootstraps
[bci,bmeans] = bootci(nBoot,{@mean,data},'alpha',.1,'type','per'); %90 confidence interval
% Compute bootstrap sample mean
bmu = mean(bmeans);
% Now repeat that process with lower-level bootstrapping
% using the same sampling proceedure and the same data.
bootMeans = nan(1,nBoot);
for i = 1:nBoot
bootMeans(i) = mean(data(randi(numel(data),size(data))));
end
CI = prctile(bootMeans,[5,95]);
mu = mean(bootMeans);
% Plot the bootci() results
figure()
ax1 = subplot(2,1,1);
histogram(bmeans);
hold on
xline(bmu, 'k-', sprintf('mu = %.2f',bmu),'LineWidth',2,'FontSize',12)
xline(bci(1),'k-',sprintf('%.1f',bci(1)),'LineWidth',2,'FontSize',12)
xline(bci(2),'k-',sprintf('%.1f',bci(2)),'LineWidth',2,'FontSize',12)
title('bootci()')
% plot the lower-level, direct computation results
ax2 = subplot(2,1,2);
histogram(bootMeans);
hold on
xline(mu, 'k-', sprintf('mu = %.2f',mu),'LineWidth',2,'FontSize',12)
xline(CI(1),'k-',sprintf('%.1f',CI(1)),'LineWidth',2,'FontSize',12)
xline(CI(2),'k-',sprintf('%.1f',CI(2)),'LineWidth',2,'FontSize',12)
title('Lower level')
linkaxes([ax1,ax2], 'xy')

"Next we were asked to use the bootstrap technique to estimate the 90% confidence interval for the probability that the mean of Pb exceeds the MCL (i.e., 50ppm)."
I'm not sure I follow this part. What is MCL? Is it a scalar value (like 50) or is is the mean of a 2nd distribution?
5 件のコメント
Samuel Wray
2019 年 10 月 26 日
We're supposed to find the probability that the bootstrap means from the first question exceed a number such as 50. It is concentrations of Pb in soil so it is 50ppm.
That desciption differs from what's in your question. The phrasing used in your question is:
we were asked to use the bootstrap technique to estimate the 90% confidence interval for the probability that the mean of Pb exceeds the MCL (i.e., 50ppm).
Pb are your your raw data so in that phrasing of the quesiton, you're comparing some value MCL to the mean of your data mean(Pb).
But the phrasing used in your comment above:
We're supposed to find the probability that the bootstrap means from the first question exceed a number such as 50.
The bootstrap mean is the mean of all 2000 bootstrap means (which probably nearly matches your population mean, anyway).
So I'm wondering if you should be using your population distribution (which could take any form) or the bootstrap'd distribtion of means (which is very close to a normal distribution). Since this sounds like homework, I'm sure there is text of lecture materail that would clear this up.
This may be informative:
Dear Adam Danz, I want to ask your kind help. I have fitted my deterministic disease transmission model parameters using small sample data. I want to determine the 95% confidence inetrval of my model parameters. For that I want to apply bootstraping and generate some additional samples. But, my data is just like thisl. example (t1, 1418), (t2, 741), (t3, 1059), (t4, 1160) and (t5, 1129). Is it possible to apply bootsrtaping at each time and determine the maximum and minimum bootstrapped mean, please? I am looking sample matlab code for these?
Adam Danz
2024 年 2 月 16 日
Could you provide a clearer description of your data? I didn't understand the example.
Temesgen
2024 年 2 月 16 日
Ok thank you for your reply. I have those datas at different times. Let say I have yearly data for five years. Let say at year 1 my data is 1418, year 2 741 ...
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Resampling Techniques についてさらに検索
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Web サイトの選択
Web サイトを選択すると、翻訳されたコンテンツにアクセスし、地域のイベントやサービスを確認できます。現在の位置情報に基づき、次のサイトの選択を推奨します:
また、以下のリストから Web サイトを選択することもできます。
最適なサイトパフォーマンスの取得方法
中国のサイト (中国語または英語) を選択することで、最適なサイトパフォーマンスが得られます。その他の国の MathWorks のサイトは、お客様の地域からのアクセスが最適化されていません。
南北アメリカ
- América Latina (Español)
- Canada (English)
- United States (English)
ヨーロッパ
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
