Search String: Display: Description: Sort:

Results:

References: [ +from:Bill.Venables@csiro.au: 32 ]

Total 32 documents matching your query.

1. Re: Calculation done on rows for select columns (score: 1)
Author: <Bill.Venables@csiro.au>
Date: Tue, 24 Jan 2006 09:46:40 +1100
I think step-by-step is about the only way (warning: untested code!): x <- as.matrix(xy[, 1:3]) x <- cbind(x, mean.x = apply(x, 1, mean), var.x = apply(x, 1, var)) y <- as.matrix(xy[, 4:6]) y <- cbin
/archives/html/s-news/2006-01/msg00070.html (9,112 bytes)

2. Re: one ( last ) string question (score: 1)
Author: c.be>
Date: Tue, 5 Apr 2005 00:05:56 +1000
ut <- if((nx <- l
/archives/html/s-news/2005-04/msg00014.html (12,840 bytes)

3. Re: bitwise operations (score: 1)
Author: .com>
Date: Tue, 5 Apr 2005 09:21:38 +1000
e which are assig
/archives/html/s-news/2005-04/msg00019.html (11,124 bytes)

4. Re: covariance matrix of "nlminb" (score: 1)
Author: o.au>
Date: Wed, 6 Apr 2005 09:20:13 +1000
n Behalf Of Sonia
/archives/html/s-news/2005-04/msg00037.html (9,260 bytes)

5. Re: permutation (score: 1)
Author: alow)
Date: Fri, 15 Apr 2005 08:11:45 +1000
e same name at CR
/archives/html/s-news/2005-04/msg00105.html (11,415 bytes)

6. Re: loop over a series regression models (score: 1)
Author: .edu>
Date: Fri, 15 Apr 2005 14:54:10 +1000
bles (with the sa
/archives/html/s-news/2005-04/msg00108.html (11,391 bytes)

7. Re: loop over a series regression models (score: 1)
Author: .edu>
Date: Sat, 16 Apr 2005 08:00:21 +1000
-"(`*tmp*`, value
/archives/html/s-news/2005-04/msg00120.html (15,964 bytes)

8. Re: friend of mine's question (score: 1)
Author: .com>
Date: Mon, 25 Apr 2005 08:25:19 +1000
stat.wustl.edu [m
/archives/html/s-news/2005-04/msg00148.html (13,395 bytes)

9. Re: regression line confidence interval (score: 1)
Author: .edu>
Date: Wed, 27 Apr 2005 09:01:52 +1000
but it has been i
/archives/html/s-news/2005-04/msg00158.html (13,205 bytes)

10. Re: one ( last ) string question (score: 1)
Author: <Bill.Venables@csiro.au>
Date: Thu, 31 Mar 2005 11:11:00 +1000
letters)[1:5] > str [1] "a a" "b b" "c c" "d d" "e e" str) "dd" "ee" --Original Message-- From: s-news-owner@lists.biostat.wustl.edu [mailto:s-news-owner@lists.biostat.wustl.edu] On Behalf Of Leeds,
/archives/html/s-news/2005-03/msg00170.html (11,079 bytes)

11. Re: nlminb.control (score: 1)
Author: <Bill.Venables@csiro.au>
Date: Thu, 31 Mar 2005 13:43:28 +1000
might want to look at http://www.bell-labs.com/project/PORT/ and get the manual. --Original Message-- From: s-news-owner@lists.biostat.wustl.edu [mailto:s-news-owner@lists.biostat.wustl.edu] On Beha
/archives/html/s-news/2005-03/msg00172.html (8,578 bytes)

12. Re: spreading out a series (score: 1)
Author: <Bill.Venables@csiro.au>
Date: Fri, 1 Apr 2005 09:00:35 +1000
Notes below: --Original Message-- From: s-news-owner@lists.biostat.wustl.edu [mailto:s-news-owner@lists.biostat.wustl.edu] On Behalf Of Leeds, Mark Sent: Friday, 1 April 2005 7:20 AM To: s-news@lists
/archives/html/s-news/2005-03/msg00187.html (13,460 bytes)

13. Re: another counting question (score: 1)
Author: <Bill.Venables@csiro.au>
Date: Mon, 30 Aug 2004 15:04:55 +1000
now, i have
/archives/html/s-news/2004-08/msg00174.html (8,386 bytes)

14. Re: Looping over objects (score: 1)
Author: Bill.Venables@csiro.au
Date: Fri, 28 Nov 2003 06:56:30 +1000
nti
/archives/html/s-news/2003-11/msg00189.html (10,653 bytes)

15. Re: Convert question (score: 1)
Author: Bill.Venables@csiro.au
Date: Mon, 6 Oct 2003 13:31:30 +1000
Don't be too worried about a loop solution if you are not going to be doing it billions of times: for(j in 2:ncol(mat)) mat[ , j] <- mat[ , j] & mat[ , j-1] Warning: untested code. Bill Venables. --O
/archives/html/s-news/2003-10/msg00082.html (9,048 bytes)

16. Re: question about predict.gam (score: 1)
Author: Bill.Venables@csiro.au
Date: Mon, 20 Oct 2003 10:15:18 +1000
/archives/html/s-news/2003-10/msg00193.html (11,375 bytes)

17. Re: Stirling Numbers (score: 1)
Author: Bill.Venables@csiro.au
Date: Tue, 5 Aug 2003 10:54:29 +1000
Here is how I would do it. stirling <- function(n) { v <- c(1, 0) if(n == 0) return(v) for(j in 1:n) v <- c(v, 0) - j*c(0, v) abs(v) } Seems to work OK for quite large n. Bill Venables. --Original M
/archives/html/s-news/2003-08/msg00022.html (10,889 bytes)

18. Re: ANOVA on repeated measures with missing data (score: 1)
Author: Bill.Venables@csiro.au
Date: Wed, 9 Jul 2003 09:56:50 +1000
When there are no missing values I presume the design is then orthogonal, in which case you will have information on each separate effect in one stratum only. (This is the goal of most split-plot des
/archives/html/s-news/2003-07/msg00052.html (9,467 bytes)

19. Re: reading a table to Splus (score: 1)
Author: Bill.Venables@csiro.au
Date: Wed, 23 Jul 2003 13:08:30 +1000
i
/archives/html/s-news/2003-07/msg00157.html (7,873 bytes)

20. Re: logistic regression (score: 1)
Author: Bill.Venables@csiro.au
Date: Fri, 1 Aug 2003 12:16:05 +1000
i
/archives/html/s-news/2003-07/msg00220.html (9,711 bytes)


This search system is powered by Namazu