我有一个文本文件,内容是:
Oliver is happy
Oliver is sad
Oliver is angry
Oliver is feeling ecstatic
我正在尝试将此加载到R,以便我可以有一个列表变量,列表中的每个项目都包含一个句子。例如,在名为“情绪”的列表中,第一项将是“奥利弗很高兴”。第二项是“奥利弗很伤心”。任何帮助将不胜感激。
答案 0 :(得分:2)
在R中读取文件,其中file
是我复制的表格:
df <- read.table(file = "clipboard", header = F, sep = "\t")
创建一个列表:
mood <- as.character(unlist(df))
> mood
[1] "Oliver is happy" "Oliver is sad" "Oliver is angry"
[4] "Oliver is feeling ecstatic"