Search String: Display: Description: Sort:

Results:

References: [ +from:timh@insightful.com: 137 ]

Total 137 documents matching your query.

1. Re: array with NA values (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 6 Apr 2006 14:44:31 -0700
fr
/archives/html/s-news/2006-04/msg00032.html (9,144 bytes)

2. Re: array with NA values (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 6 Apr 2006 15:05:24 -0700
val
/archives/html/s-news/2006-04/msg00033.html (9,655 bytes)

3. Re: array with NA values (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 7 Apr 2006 14:46:50 -0700
ls;
/archives/html/s-news/2006-04/msg00038.html (12,222 bytes)

4. Re: Selecting every other line from a data frame (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 21 Apr 2006 10:49:57 -0700
o s
/archives/html/s-news/2006-04/msg00094.html (8,578 bytes)

5. Re: Generating a vector dynamically (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 21 Apr 2006 11:20:13 -0700
ing
/archives/html/s-news/2006-04/msg00095.html (11,777 bytes)

6. Re: Prediction intervals for GAM (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 14 Feb 2006 09:49:58 -0800
Prediction intervals in GAM models can be problematic. For logistic regression, for example, the y values are 0 or 1, and the interval would be one of: [0, 1] [0] [1] One approach is to generate rand
/archives/html/s-news/2006-02/msg00031.html (9,937 bytes)

7. Re: summing algorithm (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 14 Feb 2006 11:26:22 -0800
I would do it inductively: start with the answer for 1, create answer for k+1 from answers for 1, 2, ... k. You could also do it recursively, but if you're not careful in programming it could get ex
/archives/html/s-news/2006-02/msg00034.html (9,948 bytes)

8. Re: Fwd: plot.lm Response vs Fitted (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 18 Jan 2006 13:08:41 -0800
In addition to showing multiple R^2, the plot of residuals vs fitted can show lack of fit that doesn't show up in plots of y or residuals against individual x's. Here's an example: n = 200 set.seed(0
/archives/html/s-news/2006-01/msg00058.html (9,973 bytes)

9. Re: Fwd: plot.lm Response vs Fitted (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 18 Jan 2006 13:13:26 -0800
Sorry, I misread the question. The "Response vs fitted" plot also shows the lack of fit, (though not as well as does the residuals vs fitted plot). Tim
/archives/html/s-news/2006-01/msg00059.html (9,806 bytes)

10. Re: Calculation done on rows for select columns (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 23 Jan 2006 10:22:16 -0800
You could use a combination of rowMeans, rowVars, and data[ grep( "^x", names(data)) ] datax = data[ grep( "^x", names(data)) ] datay = data[ grep( "^y", names(data)) ] data.frame(datax, mean.x = row
/archives/html/s-news/2006-01/msg00067.html (8,941 bytes)

11. Re: Calculating Averages for several combinations (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 26 Jan 2006 11:20:23 -0800
One approach: groupMeans(data[1:60], paste(data$a, data$b, data$c, data$d)) assuming the continuous variables are in columns 1 to 60 and categorical variables named a, b, c, d. This would not give av
/archives/html/s-news/2006-01/msg00092.html (8,745 bytes)

12. Re: groupMeans (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 30 Jan 2006 09:30:47 -0800
The problem turned out to be forgetting to use first=T when loading the resample library. Hence the ordinary version of mean was used, instead of the version from the resample library (that supports
/archives/html/s-news/2006-01/msg00105.html (8,276 bytes)

13. Re: Averaging rows (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 12 Dec 2005 14:50:06 -0800
Try the function groupMeans() from the S+Resample library. Download info below. That computes all group means; you could then subscript to get only the rows that had repeated values of ID; e.g. group
/archives/html/s-news/2005-12/msg00034.html (8,921 bytes)

14. Re: Problems with the bootstrap function and BCa CI (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 12 Dec 2005 17:07:32 -0800
First, the limits.bca function should not be used when bootstrapping residuals. The calculations done by limits.bca assume that the order of the data being resampled does not matter; that is expressl
/archives/html/s-news/2005-12/msg00035.html (11,332 bytes)

15. Re: creating a data frame from a vector of character strings (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 7 Nov 2005 11:17:30 -0800
You could use a combination of paste() (to create a text string to evaluate) eval(parse(text="the command")) (to evaluate the string) e.g. if your vector is c("a", "b") you want: eval(parse(text="dat
/archives/html/s-news/2005-11/msg00005.html (9,301 bytes)

16. Re: creating libraries (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 25 Nov 2005 11:44:21 -0800
o
/archives/html/s-news/2005-11/msg00072.html (9,233 bytes)

17. Re: contain (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 7 Oct 2005 10:02:38 -0700
Either `grep' or `regexpr'. In some versions of S+ `grep' is platform-dependent. From help(grep): grep calls the regexpr function, which uses a pattern matching language (resembling the SunOS grep co
/archives/html/s-news/2005-10/msg00020.html (7,907 bytes)

18. Re: moments of sums (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 10 Oct 2005 14:02:29 -0700
I recommend either * doing the theoretical computations; not difficult using cumulants (below). * use saddlepoint approximations, if the cumulant generating function is tractable. This is much more a
/archives/html/s-news/2005-10/msg00030.html (9,506 bytes)

19. Re: extract from an array of arbitrary dimension (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 14 Oct 2005 09:03:28 -0700
The bootstrap function in S+Resample lets you bootstrap arrays with arbitrarily many dimensions. That code could be adapted for your purpose. Here are pieces of the code (from resampMakeFunc) that gi
/archives/html/s-news/2005-10/msg00048.html (9,219 bytes)

20. Re: a quick question regarding bootstraping (format adjusted) (score: 1)
Author: Tim Hesterberg <timh@insightful.com>
Date: 27 Oct 2005 13:08:15 -0700
The new version of the resample library requires S+7.0 or later, because anyMissing() and other functions which were formerly in the library are now part of S+7.0. Tim Hesterberg == == Download the S
/archives/html/s-news/2005-10/msg00090.html (8,827 bytes)


This search system is powered by Namazu