Search String: Display: Description: Sort:

Results:

References: [ +from:ckeller@aicos.com: 18 ]

Total 18 documents matching your query.

1. [S] Output of 'summary(aov(... + Error()))' for unbalanced designs (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Fri, 08 Oct 1999 20:24:33 +0200
Dear S-users As a non-expert in split-plot analysis of variance I need some help in the interpretation of the output given by summary(aov(... + Error())) for unbalanced designs. With the following da
/archives/html/s-news/1999-10/msg00072.html (10,462 bytes)

2. Re: [S] LaTex to S Plus names (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Fri, 06 Aug 1999 17:51:26 +0200
Who says that \textsf{S-PLUS} is the correct way?! I am just reviewing a book about S-Plus where S-Plus is written as \textsc{S-Plus} (which, by the way, is similar to the style used in the newest m
/archives/html/s-news/1999-08/msg00075.html (8,535 bytes)

3. Re: [S] subsetting a data frame with multiple measurement (score: 1)
Author: a.nl>
Date: Wed, 17 Mar 1999 17:16:19 +0100
Use one of the following functions (and see the example below) select1 <- function(id, n){ z <- as.variable(factor(id, labels=table(id))) z>=n } select2 <- function(id, n){ ord <- order(id) r <- rle(
/archives/html/s-news/1999-03/msg00181.html (10,178 bytes)

4. Re: [S] Difficulty with merge (score: 1)
Author: z.ch>
Date: Mon, 29 Mar 1999 11:41:20 +0200
This looks like a bug in [.data.frame when unique row names are constructed. Here is a small example: x y 1 1 3 2 2 4 Problem in [.data.frame: Missing value where logical needed: if(!missing(..1) &&
/archives/html/s-news/1999-03/msg00283.html (12,172 bytes)

5. Re: [S] condensing a dataframe sequentially (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Mon, 01 Feb 1999 10:38:02 +0100
I think this is not quite the right answer to Valerie's question. She asked: ^^^^^^^^^^^^ Here is a solution. VZ.df <- data.frame(V1=rep("a",12), V2=c(rep("b",4),rep("c",8)), V3=c(rep("d",4),rep("e",
/archives/html/s-news/1999-02/msg00000.html (10,371 bytes)

6. Re: [S] condensing a dataframe sequentially (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Tue, 02 Feb 1999 11:46:08 +0100
No! It's as unefficient as Solution A for large data frames. The 'problem' in both solutions is aggregate.data.frame or more precisely the call aggregate(VZ.df$V5, by=VZ.df[,c("V1","V2","V3","V4","jj
/archives/html/s-news/1999-02/msg00003.html (13,338 bytes)

7. Re: [S] How do you specify a 0 baseline in barchart? (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Mon, 25 Jan 1999 09:03:48 +0100
Use the xlim argument together with the *undocumented* argument 'axs' to scales: barchart(Name ~ Mileage, data=dum.df, subset=Type=="Van", xlim=c(0,21), scales=list(x=list(axs="i"))) Christian Keller
/archives/html/s-news/1999-01/msg00161.html (9,164 bytes)

8. Re: [S] a better box()? (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Fri, 04 Sep 1998 09:53:04 +0200
Yes there is: par("xaxt") and par("yaxt"). So, a simple fix would be: (I assume that the S-Plus expert has a more elegant solution.) mybox <- function(n = 1, fill = F, ...) { oldpar <- par(exp = 1, .
/archives/html/s-news/1998-09/msg00022.html (9,361 bytes)

9. Re: [S] A particular scalar/matrix product (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Fri, 24 Jul 1998 08:27:05 +0200
Here is a possible solution: --> sweep , , 1 [,1] [,2] [1,] 1 3 [2,] 2 4 , , 2 [,1] [,2] [1,] 5 7 [2,] 6 8 , , 3 [,1] [,2] [1,] 9 11 [2,] 10 12 , , 1 [,1] [,2] [1,] 10 30 [2,] 20 40 , , 2 [,1] [,2] [
/archives/html/s-news/1998-07/msg00172.html (9,077 bytes)

10. Re: [S] modifying text.tree() (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Fri, 24 Jul 1998 09:20:12 +0200
Add a new argument BACKTRANS to text.tree() an insert the following lines before, e.g., cxy <- par("cxy")[2] if(is.null(ylevels)){ # only for regression trees if(!missing(BACKTRANS)){ if(is.character
/archives/html/s-news/1998-07/msg00175.html (9,197 bytes)

11. [S] Fitting AR process with non-zero mean (ar.burg) (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Wed, 06 May 1998 14:42:06 +0200
Dear S+ users Has anyone also stumbled over the problem of fitting an AR process (using 'ar.burg') without subtracting the mean of the series first? par(mfrow=c(2,1)) acf(log(lynx), type="part") acf(
/archives/html/s-news/1998-05/msg00041.html (10,982 bytes)

12. Re: [S] plot 2+3 (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Tue, 19 May 1998 19:19:21 +0200
s
/archives/html/s-news/1998-05/msg00163.html (11,227 bytes)

13. [S] R e:[S] x axis limits on barchart (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Tue, 26 May 1998 18:15:08 +0200
h
/archives/html/s-news/1998-05/msg00269.html (7,942 bytes)

14. Re: [S] x axis limits on barchart -- Trellis documentation (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Wed, 27 May 1998 11:37:41 +0200
o
/archives/html/s-news/1998-05/msg00277.html (9,497 bytes)

15. Re: [S] Command for displaying structure and contents of data frames (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Mon, 27 Apr 1998 08:01:43 +0200
I would recommend you to use the function 'str' which is available from Statlib (http://lib.stat.cmu.edu/S/) str: Compactly print STRucture of any S object. S function 'str', help, utilities and exam
/archives/html/s-news/1998-04/msg00223.html (9,416 bytes)

16. Re: [S] Q: plotting multiple graphs of different sizes on one page (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Thu, 30 Apr 1998 17:04:04 +0200
There at least two possibilities: frame() # begin a new figure par(fig=c(0,1,0,0.75)) tsplot(sunspot) par(fig=c(0,1,0.65,1)) tsplot(lynx) par(fig=c(0,1,0,1)) # reset fig to default trellis.device(mot
/archives/html/s-news/1998-04/msg00283.html (9,164 bytes)

17. Re: [S] Q: subtracting a constant from each col of a matrix (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Wed, 18 Mar 1998 18:03:39 +0100
Yes. Short and easy: (Note that FUN="-" is the default) sweep(X, 2, a, FUN="-") -- Christian -- Christian Keller Tel: +41 61 686 98 81 AICOS Technologies AG Fax: +41 61 686 98 88 Efringerstrasse 32 e
/archives/html/s-news/1998-03/msg00205.html (8,462 bytes)

18. Re: [S] Question - Coding numeric vectors (score: 1)
Author: Christian Keller <ckeller@aicos.com>
Date: Wed, 25 Mar 1998 16:41:11 +0100
You may use sample() to generate multinomial random numbers in the following way: codes <- 1:5 # assume the feeding sites are coded as 1,2,3,4,5 probs <- c(.25, .35, .4, 0, 0) # the probabilities for
/archives/html/s-news/1998-03/msg00271.html (9,946 bytes)


This search system is powered by Namazu