Skip to content

R-alpha: bug: rbind(.) drops names for character; cbind(.) is ok.

1 message · Martin Maechler

#
R version (>) 0.50-a4:

##-- This is fine :
[,1] [,2] [,3]
graph     1    2    3
plot      2    3    4
my.glm    3    4    5

##-- This is the bug:
[,1] [,2]
[1,] "A"  "B" 
[2,] "2"  "3" 
[3,] "3"  "4" 

##-- cbind(.) is ok:
graph plot my.glm
[1,] "A"   "2"  "3"   
[2,] "B"   "3"  "4"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-devel-request@stat.math.ethz.ch
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-