How Jackknife sampling works?

9 ビュー (過去 30 日間)
MByk
MByk 2017 年 8 月 17 日
回答済み: the cyclist 2017 年 8 月 18 日
I am trying to understand sampling techniques but I am stuck on jacknife. Can somebody explain how jacknife sampling works? How can I see the samples? or this is completely different than I thought? Thanks for the help.
load ('wine.txt');
format shortG;
X = wine(:,(1:13));
Y = wine(:,14);
% [~,bootsam] = bootstrp(2,[],X,Y);
% [s,idx] = datasample(wine,100,'Replace',false);
js = jackknife(@corr,X,Y);

採用された回答

the cyclist
the cyclist 2017 年 8 月 18 日
Here is a quote from that page that summarizes the technique succinctly:
For a sample with n points, the jackknife computes sample statistics on n separate samples of size n-1. Each sample is the original data with a single observation omitted.

その他の回答 (0 件)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by