将多个行的属性合并为一个

时间:2017-12-19 17:49:23

标签: r csv merge lines

我有来自facebookscraper的csv文件,列为comment_authorcomment_idcomment_messagelikes等。

问题是comment_message有时会被分割成多行。我尝试使用以下代码合并它们:

file <- read.csv("file_name.csv",stringsAsFactors = FALSE)
comment <- gsub("[\r\n]", "", file$comment_message) 

但它不起作用。

0 个答案:

没有答案