2012-08-24 47 views
1

TM封裝我想讀的CSV文件的內容爲dataframesource但是當我嘗試創建一個語料庫它總是說讀CSV文件導入語料庫 - R中

**argument "x" is missing, with no default** 

的代碼是

corpus1 <- Corpus(object=ds, 
    readerControl=list(reader=readTabular(mapping=m),language="en")) 

ds是dataframesource & m是指定的內容,話題等,以數據框的字段列表。

回答

2

就讓我們來看看在幫助?Corpus表明這個函數有兩個參數:

  • x
  • readerControl

既然你提供一個參數object,但沒有x,你的代碼應該看起來像這樣:

corpus1 <- Corpus(x=ds, readerControl=list(...)