Re: [R] boot problem

2005-12-22 Thread Angelo Canty
What are you trying to do? boot does the resampling for you so you should pass the statistic that you want calculated on the resamples. Read the helpfile regarding the format of the statistic. It should take two arguments, one of which is a vector of indices specifying the resample. On Tue,

Re: [R] boot problem

2005-12-21 Thread Roger D. Peng
Your 'resample' function is not written according to the help page. Try resample - function(x, index) { x[index, ] } -roger david v wrote: Hello, This is the code that is giving me problems library(boot) data-read.table(test,header=FALSE,sep=\t,row.names=1) data V2 V3 V4 A

[R] boot problem

2005-12-20 Thread david v
Hello, This is the code that is giving me problems library(boot) data-read.table(test,header=FALSE,sep=\t,row.names=1) data V2 V3 V4 A 5 8 9 B 12 54 89 C 65 89 23 D 32 69 44 E 21 84 97 F 33 59 71 G 16 45 93 H2 46 55 I 22 33 88 resample - function(x,index) {