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

  • Home
  • SEARCH
  • 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 978937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T04:08:19+00:00 2026-05-16T04:08:19+00:00

Consider the following code: require(Hmisc) num.boots <- 10 data <- rchisq(500, df = 5)

  • 0

Consider the following code:

require(Hmisc)
num.boots <- 10
data <- rchisq(500, df = 5) #generate fake data

#create bins
binx <- cut(data, breaks = 10)
binx <- levels(binx)
binx <- sub("^.*\\,", "", binx)
binx <- as.numeric(substr(binx, 1, nchar(binx) - 1))

#pre-allocate a matrix to be filled with samples
output <- matrix(NA, nrow = num.boots, ncol = length(binx)) 

#do random sampling from the vector and calculate percent
# of values equal or smaller to the bin number (i)
for (i in 1:num.boots) {
    walk.pair.sample <- sample(data, size = length(data), replace = TRUE)
    data.cut <- cut2(x = walk.pair.sample, cuts = binx)
    data.cut <- table(data.cut)/sum(table(data.cut))
    output[i, ] <- data.cut
}

#do some plotting
plot(1:10, seq(0, max(output), length.out = nrow(output)), type = "n", xlab = "", ylab = "")

for (i in 1:nrow(output)) {
    lines(1:10, output[i, 1:nrow(output)])
}

#mean values by columns
output.mean <- apply(output, 2, mean)
lines(output.mean, col="red", lwd = 3)
legend(x = 8, y = 0.25, legend = "mean", col = "red", lty = "solid", lwd = 3)

I was wondering if I can supply the boot:boot() function a function that has as its output a vector of length n > 1? Is it at all possible?

Here are my feeble attempts, but I must be doing something wrong.

require(boot)
bootstrapDistances <- function(data, binx) {
    data.cut <- cut2(x = data, cuts = binx)
    data.cut <- table(data.cut)/sum(table(data.cut))
    return(data.cut)
}

> x <- boot(data = data, statistic = bootstrapDistances, R = 100)
Error in cut.default(x, k2) : 'breaks' are not unique

I don’t really understand why Hmisc::cut2() isn’t working properly in the boot() call, but works when I call it in a for() loop (see code above). Is the logic of my bootstrapDistances() function feasible with boot()? Any pointers much appreciated.

.:EDIT:.

Aniko suggested I modify my function in such a way, to include an index. While reading the documentation for boot(), this wasn’t clear to me how it works, which explains why the function may not be working. Here’s the new function Aniko suggested:

bootstrapDistances2 <- function(data, idx, binx) { 
  data.cut <- cut2(x = data[idx], cuts = binx) 
  data.cut <- table(data.cut)/sum(table(data.cut)) 
  return(data.cut) 
} 

However, I managed to produce an error and I’m still working how to remove it.

> x <- boot(data = data, statistic = bootstrapDistances2, R = 100, binx = binx)
Error in t.star[r, ] <- statistic(data, i[r, ], ...) : 
  number of items to replace is not a multiple of replacement length

After I restarted my R session (also tried another version, 2.10.1), it seems to be working fine.

  • 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-16T04:08:20+00:00Added an answer on May 16, 2026 at 4:08 am

    From the help-file for the boot function:

    In all other cases statistic must take at least two arguments. The first argument passed will always be the original data. The second will be a vector of indices, frequencies or weights which define the bootstrap sample.

    So you need to add a second parameter to your bootstrapDistances function that will tell it which elements of the data are selected:

    bootstrapDistances2 <- function(data, idx, binx) { 
      data.cut <- cut2(x = data[idx], cuts = binx) 
      data.cut <- table(data.cut)/sum(table(data.cut)) 
      return(data.cut) 
    } 
    

    And the results:

    x <- boot(data = data, statistic = bootstrapDistances2, R = 100, binx=binx)
    x
    
    ORDINARY NONPARAMETRIC BOOTSTRAP
    
    
    Call:
    boot(data = data, statistic = bootstrapDistances2, R = 100, binx = binx)
    
    
    Bootstrap Statistics :
         original   bias    std. error
    t1*     0.208  0.00134 0.017342783
    t2*     0.322  0.00062 0.021700803
    t3*     0.190 -0.00034 0.018873433
    t4*     0.136 -0.00116 0.016206197
    t5*     0.078 -0.00120 0.011413265
    t6*     0.036  0.00070 0.008510837
    t7*     0.016  0.00074 0.005816417
    t8*     0.006  0.00024 0.003654581
    t9*     0.000  0.00000 0.000000000
    t10*    0.008 -0.00094 0.003368961
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 533k
  • Answers 533k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I think maybe this is actually your problem. DataTable t1… May 17, 2026 at 12:36 am
  • Editorial Team
    Editorial Team added an answer Okay.. of course XSL templates is probably the obvious thing… May 17, 2026 at 12:36 am
  • Editorial Team
    Editorial Team added an answer You might want to consider using the email as the… May 17, 2026 at 12:36 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have a question about .net generics. Consider the following code: public abstract class
Consider the following block of code: class CheckStore { private String displayText; private boolean
Consider the following code fragment: let t1 = async { return process1() } let
Consider the following PHP code: <?php require_once(myDBclass.php); class a { private $tablename; private $column;
Consider the following code : public class RandomClass { private readonly string randomString; public
Consider following snippet code for xml. <rootnode> <child id=child1 ><![CDATA[child 1]]></child> <child id=child2 ><![CDATA[child
Consider the following code: class Program { static void Main(string[] args) { A a
Consider the following code: A.java: import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @Retention(RetentionPolicy.RUNTIME) @interface A{} C.java: import
Consider the following code: try { using(TransactionScope) { Process.Start(SQLInstaller.EXE); throw new Exception(); Commit(); }
Consider the following code: class Program { static void Main(string[] args) { new Program().Run(args);

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.