Skip to main content
MedCalc
Mail a PDF copy of this page to:
(Your email address will not be added to a mailing list)
working
Show menu

Scripts - JackknifeSE

JackknifeSE command

JackknifeSE(procedure,tablename).

This procedure creates a table containing the jackknife estimates of bias and standard error.

The following statistical procedures are enabled for the JackknifeSE command (more will follow in coming MedCalc updates):

Notes

Example

The following example calculates the Jackknife Standard Error for a correlation.

The example is based on this SAS help page.

// Jackknife Standard Error estimation
// example based on
// https://blogs.sas.com/content/iml/2017/06/21/jackknife-estimate-standard-error-sas.html
<data>
lsat gpa
653 3.12   
576 3.39   
635 3.30   
661 3.43   
605 3.13
578 3.03   
572 2.88   
545 2.76   
651 3.36   
555 3.00
580 3.07   
594 2.96   
666 3.44   
558 2.81   
575 2.74
</data>
$variablex="lsat";
$variabley="gpa";
JackknifeSE(correlation,res);
?res;

The results table is:

StatisticEstimateMean Jackknife
estimate
BiasJackknife SE
Sample size15
Correlation coefficient r0.7763744910.77591209-0.0064736230.14251861

See also

External links