How Jackknife sampling works?

8 visualizaciones (últimos 30 días)
MByk
MByk el 17 de Ag. de 2017
Respondida: the cyclist el 18 de Ag. de 2017
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);

Respuesta aceptada

the cyclist
the cyclist el 18 de Ag. de 2017
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.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by