Bootstrapping in R – Single guide for all concepts

FREE Online Courses: Your Passport to Excellence - Start Now

In this tutorial, we will learn about working of bootstrapping in R. Along with this, we will cover bootstrap development and the pros and cons of bootstrapping in R in different areas. Also, we will see bootstrap examples and bootstrap package.

So, let’s start the R bootstrapping tutorial.

What is Bootstrapping in R?

Bootstrapping in R is a very useful tool in statistics. Bootstrapping comes in handy whenever there is a doubt. It is a non-parametric method.

Generally, bootstrapping in R follows the same basic steps:

  • First, we resample a given data, set a specified number of times.
  • Then, we will calculate a specific statistic from each sample.
  • After that, find the standard deviation of the distribution of that statistic.

Non-parametric Bootstrapping in R

A package is presented “boot package” which provides extensive facilities. You can bootstrap a single statistic (e.g. a median), or a vector (e.g., regression weights).

The main bootstrapping function is a boot( ) and has the following format:

bootobject <- boot(data= , statistic= , R=, ...)

Parameter         Description

Data                   A vector, matrix, or data frame.
Statistic              A function that produces the k statistics to be bootstrapped.
R                        Number of bootstrap replicates.

More parameters to be passed to the function that produces the statistic of interest.

We use to boot( ) which calls the statistic function R times. The boot object structure includes:

Element      Description

t0                The observed values of k statistics applied to the original data.
t                  An R x k matrix where each row is a bootstrap replicate of the k statistics.

Gain expertise in all the Data Frame Operations of R

Example of Bootstrapping

In this example of bootstrapping, we will implement the R package boot. We will perform bootstrapping on a single statistic (k = 1). And, we will make use of the dataset – ‘mtcars’.

We will obtain a bootstrapped confidence interval of 95% for the R-squared in the linear regression relationship of miles per gallon variable (mpg) on car weight (wt) and its displacement (disp). This bootstrapped confidence interval is based on 1500 replications.

# Author DataFlair
library(boot)
# Creating Function to obtain R-Squared from the data
r_squared <- function(formula, data, indices) {
val <- data[indices,] # selecting sample with boot 
fit <- lm(formula, data=val)
return(summary(fit)$r.square)
} 
# Performing 1500 replications with boot 
output <- boot(data=mtcars, statistic=r_squared, 
R=1500, formula=mpg~wt+disp)

# Plotting the output
output 
plot(output)

# Obtaining a confidence interval of 95%
boot.ci(output, type="bca")

Code Display:

Bootstrapping in R Example

We obtain the following output in the Console window after the code is executed:

Console Output of Example

Bootstrap Resampling

Usage

boot(data, statistic, R, sim=”ordinary”, stype=”i”,
strata=rep(1,n), L=NULL, m=0, weights=NULL,
ran.gen=function(d, p) d, mle=NULL, …)

Arguments

1. data

The data in the form of a vector, matrix or data frame. If we are using a matrix or data frame, then we can consider each row as one multivariate observation.

Explore the vector types and operations in vector

2. statistic

Whenever we are using sim=”parametric”, then the first argument to statistic must be the data.

3. R

It tells about the number of bootstrap replicates. Usually, this will be a single positive integer.

4. sim

A character string indicating the type of simulation required.

5. stype

A character string indicating representation of the second argument of statistic. Possible values of stype are “i” (indices – the default), “f” (frequencies), or “w” (weights).

6. strata

An integer vector or factor specifying the strata for multi-sample problems.

Do you know about R Factor Functions

7. l

This argument is used to evaluate the influence values of the observations. 

8. m

In this case, a number of predictions are made that need to be replicated at each bootstrap. This is most useful for (generalized) linear models.

9. weights

This argument is a vector or matrix of importance weights. If it is a vector, then the argument should have as many elements as there are observations in data. This parameter is ignored if a sim is not “ordinary” or “balanced”.

10. ran.gen

This function is used only when a sim is “parametric”. It is a function of two arguments.

11. mle

The second argument to be passed to ran.gen.

12. …

It is an argument for a statistic that needs to be passed unchanged each time it is being called.

Types of Bootstrap CIs

The bootstrap CI function “boot.ci” returns five different types of confidence intervals:

  • Norm (Normal Representation)
  • Basic
  • Stud (studentized)
  • Perc (percentile)
  • Bca (bias-corrected, accelerated)

In order to understand the various types of CIs in bootstrapping, let us go through some important notations:

  • The mean of bootstrap realizations is represented by t⋆ which is our bootstrap estimate.
  • The value of statistics in our dataset is t0.
  • Standard Error in our bootstrap estimate is denoted by se⋆.
  • Bootstrap estimate b = t⋆ − t0 where b is our bias.
  • The confidence level is denoted by α.
  • The 1−α2 quantile of the standard normal distribution is zα.
  • The α-percentile of distribution of bootstrap realizations is represented by θα.

Now, we will take a look at the various bootstrapping CIs.

1. Percentile CI

A Percentile CI takes in relevant percentiles. Using the above notations, the percentile CI is written as:

Percentile CI Equation

2. Normal CI

In the case of bootstrap, we modify the Wald CI to correct it for bias. In that case, the Normal CI becomes:

Normal CI Equation - Bootstrapping in R

3. Basic CI

The Basic CI is an improvement over the Percentile CI. The Percentile CI does not perform well in cases of weird-tailed distributions, but the Basic CI provides much more robust performance. The methodology through which Basic CI computes differences between the bootstrap replication and t0 is by using the percentiles for distribution.

Basic CI is represented by the formula:

Basic CI Equation - Bootstrapping in R

4. BCαCI

BCαCI stands for bias-corrected, accelerated. The specific percentiles of bootstrap realizations are required by Acceleration that is mentioned in the method’s name. Sometimes, these percentiles can be outliers and therefore, is extreme in nature. In these scenarios, BCα can be quite unstable.

Don’t forget to check the Graphical Data Analysis with R

R Bootstrap Methods

There are two methods of bootstrapping in R:

1. Residuals

First, we bootstrap the residuals. Then, create a set of new dependent variables. After that, we use these dependent variables to form a bootstrapped sample.

2. Bootstrapping Pairs

It involves sampling pairs of the dependent and independent variable. Between these two methods, the second method is found to be more robust.

When to use Bootstrap in R?

It is used to enable inference on the statistic of interest. It’s important when the true distribution of this statistic is unknown.

For example:

In the case of a linear model, if an analyst does not want to spend time while writing down the equations, then bootstrapping in R is a great approach for him. It helps to get standard errors and confidence intervals from the bootstrapped distribution.

When the bootstrap is inconsistent?

This gives a set of scenarios when the bootstrap procedure can fail:

1. Generally, it is observed that for small sample sizes less than 10, a bootstrapped sample is not reliable.

2. The distributions that have infinite second moments.

3. When estimating extreme values.

4. At the time of unstable AR processes.

R Bootstrap Development – Pros and Cons

According to Twitter, Bootstrap is the best existing framework. We use bootstrap for developing responsive and mobile-first projects on the web, which are an HTML, CSS and JS framework

Now, we will tell you the most important thing. The frameworks may save you a bunch load of time that you would usually spend in coding, but it restricts your creativity. So, it’s better for you to come up with design ideas that fit their requirements.

Advantages of R Bootstrap Development

  • It has fewer cross-browser bugs.
  • It is having responsive structures and styles.
  • Bootstrap contains several JavaScript plugins using the jQuery.
  • It is having good documentation and community support.
  • It has loads of free and professional templates, WordPress themes and plugins.
  • Bootstrap has a great grid system.

Disadvantages of R Bootstrap Development

  • There will be a need for lots of styles overrides or rewrite files. Thus, it can lead to more time spending on designing and coding the website. Also, the design tends to deviate from the customary design used in bootstrap.
  • We would have to go the extra mile while creating a design. If we don’t go with heavy customization, then all the websites will look the same.
  • The styles present in bootstrap are verbose. Also, it can lead to lots of output in HTML.
  • A JavaScript is tied to jQuery and it is one of the commonest libraries which thus leaves most of the plugins unused.
  • It is a non-compliant HTML.

Get a deep insight into Data Manipulation in R

Pros and Cons of R Bootstrapping

Pros of R Bootstrapping

1. Don’t have to spend a lot of time in fundraising – Appeal for funding is a long and taxing process for most entrepreneurs. When you’re a first-time entrepreneur and in the early stages of your company, then being comfortable in bootstrapping, helps you a lot in this process.

2. Greater control over your company’s pace – It’s good if you are raising your money from the profession. The company people are going to pressure you to grow fast or exit big. It’s the way they gain profit from investing in you. As not all businesses are designed for that “grow big or go home” pace, the bootstrapping help you decide when and how fast to move.

3. You can pick your corporate structure – Most investors need you to be a C corp to protect themselves. And, therefore they limit their tax exposure. But, depending on the type of business you’re in, you might want to be an S-corp or an LLC. Moreover, at the end of the day, it matters a lot if you distribute company profits to shareholders. On the other hand, C-corps shareholders are “double taxed”. Which will benefit you if you’re profitable and issuing dividends?

4. No governance – If you get raised by professional investors, they will ask you to create a board. Hence, this means you have to spend your time in updating and managing the board. You can get a lot of value from a good board but it does take time.

5. A network of supporters – Your interests are aligned with those of your investors. So if they want you to succeed then the best ones will go out of their way to help you. So now you have a great team of people to consult for help and advice when you need it. This case is particularly true when you are in need of more money.

Cons of R Bootstrapping

1. Speed – By bootstrapping in R, you are either limiting or redirecting your resources. In some industries like web and software, this can be a major challenge because as we are aware that the markets move so fast, that you might get overtaken by a well-funded competitor while you’re still bootstrapping.

2. Personal risk – By bootstrapping, you are retaining more value and taking on more risk. Although, if you are raising money means you share both.

Advantages and Disadvantages of Bootstrapped Funding

Advantages of Bootstrapping your Business

  • Instead of wasting your time to hunt down an investment, you can focus more on the business itself.
  • Without outside investors, you are able to control your company completely without pressure.
  • It is guaranteed that your business will become more customer-focused. Since all the money is coming from customers instead of investors.
  • The owner gets to take a bigger piece of the pie in the event of a company exit instead of sharing it with investors.

Disadvantages of Bootstrapping your Business

  • Since bootstrapping contractor uses their own personal assets to get their business going, they are at greater risk of ending up in a lot of debt, if the business fails.
  • It takes a much longer time to grow a company without investment. It means that you will not be earning any money for quite a while.
  • It’s not at all possible that you have to bootstrap all business ventures, especially, if the business needs a large amount of capital to get started.
  • It might be possible that your business fails if product development and marketing becomes inefficient.
  • Competitors with better financial standing. They have a better chance to push you out of the market before you even get a chance to get your business up and running.

Summary

We have studied bootstrapping in R. Along with this, we have learned why and when to use R bootstrapping. After learning all this, we moved to the advantages and disadvantages of bootstrapping in R in different fields which helps in personal growth also.

Now, it’s the time to learn R Debug – List of important R Debug Functions

Still, if you have any doubts regarding bootstrapping in R, ask in the comment section.

Your 15 seconds will encourage us to work even harder
Please share your happy experience on Google

follow dataflair on YouTube

1 Response

  1. Irene says:

    Can I ask in the bootstrapping example, on the 5th line, why it is data [indices,]? Is it because R automatically understand that by “indices” we mean sampling? Almost like a function?

Leave a Reply

Your email address will not be published. Required fields are marked *