I have a dataframe with two column. I want to concatenate the values in a second column and return a string. How can I do this in R?
我有一个包含两列的数据框。我想连接第二列中的值并返回一个字符串。我怎么能在R中这样做?
1 个解决方案
#1
1
You can use paste
with the appropriate delimiter. Here, I am using ''
. You can specify it to -
, _
or anything else.
您可以使用带有适当分隔符的粘贴。在这里,我正在使用''。您可以将其指定为 - ,_或其他任何内容。
paste(df$Col2, collapse="")
If there are NAs
you could use na.omit
如果有NA,你可以使用na.omit
paste(na.omit(df$V2), collapse="")
#1
1
You can use paste
with the appropriate delimiter. Here, I am using ''
. You can specify it to -
, _
or anything else.
您可以使用带有适当分隔符的粘贴。在这里,我正在使用''。您可以将其指定为 - ,_或其他任何内容。
paste(df$Col2, collapse="")
If there are NAs
you could use na.omit
如果有NA,你可以使用na.omit
paste(na.omit(df$V2), collapse="")