pairs_boot | R Documentation |
pairs.boot
is used to bootstrap a statistic which operates on
two samples and returns a single value. An example of such a
statistic is the correlation coefficient (i.e. cor
).
Resampling is done pairwise, so x
and y
must have the
same length (and be ordered correctly). One can alternatively pass a
two-column matrix to x
.
pairs_boot(x, y = NULL, FUN, R, student = FALSE, M, weights = NULL, ...)
x |
Either a vector of numbers representing the first sample or a two column matrix containing both samples. |
y |
If NULL it is assumed that |
FUN |
The statistic to bootstrap. If |
R |
The number of bootstrap replicates. |
student |
Should we do a studentized bootstrap? This requires a double bootstrap so it might take longer. |
M |
If |
weights |
Resampling weights. |
... |
Other (named) arguments that should be passed to |
An object of class "simpleboot"
, which is almost identical to the
regular "boot"
object. For example, the boot.ci
function can be used on this object.
Roger D. Peng
library(boot)
set.seed(1)
x <- rnorm(100)
y <- 2 * x + rnorm(100)
boot.cor <- pairs_boot(x, y, FUN = cor, R = 100)
boot.ci(boot.cor)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.