[R-gregmisc-users] SF.net SVN: r-gregmisc:[1513] trunk/gtools/R/smartbind.R
Brought to you by:
warnes
From: <wa...@us...> - 2011-09-28 22:56:48
|
Revision: 1513 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1513&view=rev Author: warnes Date: 2011-09-28 22:56:42 +0000 (Wed, 28 Sep 2011) Log Message: ----------- smartbind(): Prevent coersion to data frame from mangling column names. Modified Paths: -------------- trunk/gtools/R/smartbind.R Modified: trunk/gtools/R/smartbind.R =================================================================== --- trunk/gtools/R/smartbind.R 2011-09-28 22:53:47 UTC (rev 1512) +++ trunk/gtools/R/smartbind.R 2011-09-28 22:56:42 UTC (rev 1513) @@ -15,7 +15,7 @@ if(is.matrix(x) || is.data.frame(x)) x else - data.frame(as.list(x)) + data.frame(as.list(x), check.names=FALSE) ) #retval <- new.env() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |