View source: R/misc_functions.R
jack_knife | R Documentation |
jack_knife
Ranks the squared differences between mean values from Jackknife analysis
(arithmetic mean estimated by removing one observation at a time) and the original mean value.
jack_knife(x)
x |
A numeric variable. Missing values are removed by default. |
Data frame with the ranked squared differences.
rank_leverage
.
x <- rnorm(10, 170, 8)
x
mean(x)
jack_knife(x)
x <- rnorm(100, 170, 8)
mean(x)
head(jack_knife(x))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.