我有一个名为positive.lexicon.files的向量,其中存储了3个文件作为其元素。 (每个文件都有一列单词作为其内容)。
positive.lexicon.files <- c(
"data/lexicon.fileA.csv",
"data/lexicon.fileB.csv",
"data/lexicon.fileC.csv"
)
pos.lexicon <- c() #empty vector
#join the contents of each file row wise in the pos.lexicon vector
for(i in 1:length(positive.lexicon.files)){
y <- read.csv(positive.lexicon.files[i], stringAsFactors = FALSE)
rbind(pos.lexicon, y)
}
pos.lexicon #to try and print the contents of pos.lexicon; but does nothing in the console
我认为这段代码允许我遍历存储在positive.lexicon向量中的文件,获取每个内容并将这些内容按行存储在pos.lexicon向量中。所以pos.lexicon中的第一行然后很多行将是fileA的内容,然后接下来很多行将是fileB的内容,依此类推。但是当我在RStudio中运行它时,pos.lexicon的环境变量仍显示为null。这是因为我正在使用非空的载体初始化空/空向量吗?