Skip to content
Prev 168910 / 398506 Next

concatenating 2 text columns in a data.frame

On Mon, Feb 02, 2009 at 09:44:28AM -0500, Shaun Grannis wrote:
assuming your data frame is named foo:

foo$NewCol <- paste(foo$C3, foo$C4, sep='')

cu
	Philipp