Skip to content
Prev 3703 / 7420 Next

How to remove space among columns

Hi Manuel,
You can use the function "paste"

paste(col1,col2.col3,col4, sep = "")

in a new data frame.

data.frame(
col1 = paste(col1,col2.col3,col4, sep = ""),
col2 = col5,
col3 = col6)

I think it will work
Yu-Chun


2013/3/27 Manuel Sp?nola <mspinola10 at gmail.com>: