我想将csv文件的内容读入dataframesource,但是当我尝试创建语料库时,它总是说
**argument "x" is missing, with no default**
代码是
corpus1 <- Corpus(object=ds,
readerControl=list(reader=readTabular(mapping=m),language="en"))
ds
是一个dataframesource&amp; m
是一个列表,用于将内容,主题等分配给数据框的字段。
答案 0 :(得分:2)
快速查看?Corpus
的帮助表明此函数有两个参数:
x
readerControl
由于您提供了参数object
,但没有x
,因此您的代码应该如下所示:
corpus1 <- Corpus(x=ds, readerControl=list(...)