Questions tagged [statistics-bootstrap]

In statistics, a bootstrap is a resampling technique based on random sampling with replacement.

The bootstrap was introduced by Brad Efron in the Late 1970s. It is a computer‐intensive method that enables enables researchers to estimate the sample statistics (such as medians, variances, percentiles) by drawing randomly with replacement from a set of available data.

See also:

  1. The Wikipedia page on Bootstrapping
  2. Bootstrapping using boot package in R
  3. Brad Efron's paper on bootstrap
  4. Review on bootstrap methods in econometrics
602 questions
-2
votes
1 answer

Doing Deming regression in R. Time sensitive

I just loaded R to my windows machine and included bootstrap routines and the mcr routine for Deming regression. Very basic questions. How do I imbed Deming regression inside a bootstrap sampling routine? How do I input my data into R? The data…
-7
votes
1 answer

Take one sample per row at a time, compute mean, loop

In R I have a matrix of 47 rows and 30 columns. Each cell contains a numerical value (varying from 0.0 to 1.0). Some cells have "NA" instead of a numerical value. This is what I would like to do: For each row, sample one random value until all 47…
pbc
  • 15
  • 3
1 2 3
40
41