Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1062255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T18:35:52+00:00 2026-05-16T18:35:52+00:00

In the following code I use bootstrapping to calculate the C.I. and the p-value

  • 0

In the following code I use bootstrapping to calculate the C.I. and the p-value under the null hypothesis that two different fertilizers applied to tomato plants have no effect in plants yields (and the alternative being that the “improved” fertilizer is better). The first random sample (x) comes from plants where a standard fertilizer has been used, while an “improved” one has been used in the plants where the second sample (y) comes from.

x <- c(11.4,25.3,29.9,16.5,21.1)
y <- c(23.7,26.6,28.5,14.2,17.9,24.3)
total <- c(x,y)
library(boot)
diff <- function(x,i) mean(x[i[6:11]]) - mean(x[i[1:5]])
b <- boot(total, diff, R = 10000)

ci <- boot.ci(b)
p.value <- sum(b$t>=b$t0)/b$R

What I don’t like about the code above is that resampling is done as if there was only one sample of 11 values (separating the first 5 as belonging to sample x leaving the rest to sample y).
Could you show me how this code should be modified in order to draw resamples of size 5 with replacement from the first sample and separate resamples of size 6 from the second sample, so that bootstrap resampling would mimic the “separate samples” design that produced the original data?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T18:35:53+00:00Added an answer on May 16, 2026 at 6:35 pm

    EDIT2 :
    Hack deleted as it was a wrong solution. Instead one has to use the argument strata of the boot function :

    total <- c(x,y)
    id <- as.factor(c(rep("x",length(x)),rep("y",length(y))))
    b <- boot(total, diff, strata=id, R = 10000)
    ...
    

    Be aware you’re not going to get even close to a correct estimate of your p.value :

    x <- c(1.4,2.3,2.9,1.5,1.1)
    y <- c(23.7,26.6,28.5,14.2,17.9,24.3)
    
    total <- c(x,y)
    
    b <- boot(total, diff, strata=id, R = 10000)
    ci <- boot.ci(b)
    p.value <- sum(b$t>=b$t0)/b$R
    > p.value
    [1] 0.5162
    

    How would you explain a p-value of 0.51 for two samples where all values of the second are higher than the highest value of the first?

    The above code is fine to get a -biased- estimate of the confidence interval, but the significance testing about the difference should be done by permutation over the complete dataset.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I implemented the following code that use the data points in dat to calculate
I have the following code: use strict; function isDefined(variable) { return (typeof (window[variable]) ===
I have the following code I use to insert form data into a single
I have the following test code use Data::Dumper; my $hash = { foo =>
I'm using the following code to use a ListView in CustomAlertDialog Layout . public
I use following code: Create a retry policy, when error, retry after 1 second,
I have the following code which I use to match fancybox possible elements: $('a.grouped_elements').each(function(){
I use VS2010, C# to develop Silverlight 4 app, I use following code in
I have an array of objects, and i use following code to get in
When I use the following code in a newly inserted record in a TClientDataSet:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.