⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jknifedemo.m

📁 Jacknife method, very good
💻 M
字号:
% JKNIFEDEMO  Demonstration of JKNIFE and JSTATS
% EXAMPLE   : jknifedemo (Oh, the FEX code metrics..)  
% NOTES     : Function HISTF needs to be downloaded from FEX
% AUTHOR    : Dimitri Shvorob, dimitri.shvorob@vanderbilt.edu, 4/15/07

% Simple regression
n = 100;
x = rand(n,1);
i = ones(n,1);
a = 3;
b = 5;
y = a + b*x + randn(n,1);

% Jackknife calculations
disp('A. "fun" with vector output (OLS estimates of regression intercept and slope)')
ls = jknife('olsvector',[y i x]); 
disp('Mean and variance estimates')
[m,v] = jstats(ls)     %#ok

disp('B. "fun" with structure output (OLS estimates of regression intercept and slope)')
ls = jknife('olsstructure',[y i x]);   
disp('Mean and variance estimates')
[m,v] = jstats(ls,'b') %#ok

% Jackknife distributions of OLS estimates
ab = [ls.b];                      % note: may want to exclude actual-sample value 
subplot(3,1,1)
scatter(x,y,2)
title(['Random sample: \ity = ' num2str(a) ' + ' num2str(b) 'x + \epsilon, \rmwhere \itx ~ U\rm[\it0,1\rm]\it,\epsilon ~ N\rm[\it0,1\rm], \iti = 1,..,100']); 

subplot(3,1,2)
opt.dx   = .01;
opt.xmin = a - .5;
opt.xmax = a + .5;
opt.xmrk = a; 
histf(ab(1,:),opt)
title(['OLS intercept estimate: jackknife distribution. (True value = \it' num2str(a) '\rm)'])

subplot(3,1,3)
opt.xmrk = b;
opt.xmin = b - .5;
opt.xmax = b + .5;
histf(ab(2,:),opt)
title(['OLS slope estimate: jackknife distribution. (True value = \it' num2str(b) '\rm)'])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -