Estimation of standard errors with bootstrapping

In the following, we discuss the bootstrap in detail also by taking hands-on R. Before the estimation of the standard error is in focus, some definitions are repeated in more detail.

Let's consider the following toy example with the following seven numbers. We use such a small sample and toy example just to explain the bootstrap in R. The estimator of interest should be the arithmetic mean in our example:

x <- c(5, 7, 8, 2, 15, 12, 3)

We next define the bootstrap sample. A bootstrap sample is random sample

Estimation of standard errors with bootstrapping

with replacement from the sample . One bootstrap sample is given by:

## for reproducibility we ...

Get Simulation for Data Science with R now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.