Re: [R] Setting matrix dimnames in a list

2008-05-08 Thread statmobile
__ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.

Re: [R] Setting matrix dimnames in a list

2008-05-08 Thread Marc Schwartz
on 05/08/2008 12:33 PM statmobile wrote: Hey All, I was wondering if I could solicit a little input on what I'm trying to do here. I have a list of matrices, and I want to set their dimnames, but all I can come up with is this: x <- matrix(1:4,2) y <- matrix(5:8,2) z <- list(x,y) nm <- c("a",

Re: [R] Setting matrix dimnames in a list

2008-05-08 Thread jim holtman
I think what you want is this -- you have to return 'x' from the lapply: x <- matrix(1:4,2) y <- matrix(5:8,2) z <- list(x,y) nm <- c("a","b") nms <- list(nm,nm) z <- lapply(z,function(x){ dimnames(x)<-nms x }) On Thu, May 8, 2008 at 1:33 PM, statmobile <[EMAIL PROTECTED]> wrote: > Hey

[R] Setting matrix dimnames in a list

2008-05-08 Thread statmobile
Hey All, I was wondering if I could solicit a little input on what I'm trying to do here. I have a list of matrices, and I want to set their dimnames, but all I can come up with is this: x <- matrix(1:4,2) y <- matrix(5:8,2) z <- list(x,y) nm <- c("a","b") nms <- list(nm,nm) z <- lapply(z,