How Jackknife sampling works?
Show older comments
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);
Accepted Answer
More Answers (0)
Categories
Find more on Resampling Techniques in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!