如何将 csv 文件转换为纯文本文件?
我的 CSV 文件包含 3 列,我只想获取文本文件中“文本”列的值。我试图通过以下方式实现这一目标:
name <- read.csv('c:/Users/bi2/Documents/TextminingRfiles/ScoreOutput/RangersScores.csv', header=T, sep=",")
attach(name)
posText <- name[score > 0,]> name <- read.csv('c:/Users/bi2/Documents/TextminingRfiles/ScoreOutput/RangersScores.csv', header=T, sep=",")
attach(name)
posText <- name[score > 0,]
write(posText$text, file = "C:/Users/bi2/Documents/TextminingRfiles/ScoreOutput/namePositive.txt", sep="")
此代码仅将索引复制到文本文件,而不是文本列的文本值。我怎样才能解决这个问题?
Tnx 为您提供帮助。