Hi there,

I happened to find the following code can generate a data frame with same column name.

> x <- data.frame(a=c(1,2,3))
> y <- data.frame(a=c(2,3,4))
> z <- cbind(x,y)

However, in this case, one can not use the $ to extract the second column, right?

Is it possible to prevent the cbind() produce a data frame with same column name?

Best,
Jinsong

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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.

Reply via email to