Re: [R] colnames documentation

2012-02-11 Thread R. Michael Weylandt
Thanks Uwe. Michael 2012/2/11 Uwe Ligges : > > > On 10.02.2012 04:53, R. Michael Weylandt wrote: >> >> Consider the following in R 2.14.1 (seems to still be the case in Rdevel): >> >> x<- matrix(1:9, 3) >> colnames(x) # NULL as expected >> colnames(x, do.NULL = TRUE) # NULL -- since we didn't cha

Re: [R] colnames documentation

2012-02-11 Thread Uwe Ligges
On 10.02.2012 04:53, R. Michael Weylandt wrote: Consider the following in R 2.14.1 (seems to still be the case in Rdevel): x<- matrix(1:9, 3) colnames(x) # NULL as expected colnames(x, do.NULL = TRUE) # NULL -- since we didn't change the default colnames(x, do.NULL = FALSE) # "col1" "col2" "co

[R] colnames documentation

2012-02-09 Thread R. Michael Weylandt
Consider the following in R 2.14.1 (seems to still be the case in Rdevel): x <- matrix(1:9, 3) colnames(x) # NULL as expected colnames(x, do.NULL = TRUE) # NULL -- since we didn't change the default colnames(x, do.NULL = FALSE) # "col1" "col2" "col3" This doesn't really seem to square with the do