このtm
パッケージはc
、一連のPlainTextDocument
s が与えられた場合、自動的にCorpus
. 残念ながら、それぞれPlainTextDocument
を個別に指定する必要があるようです。
たとえば、私が持っていた場合:
foolist <- list(a, b, c); # where a,b,c are PlainTextDocument objects
を取得するためにこれを行いますCorpus
:
foocorpus <- c(foolist[[1]], foolist[[2]], foolist[[3]]);
'PlainTextDocument
次のような s のリストのリストがあります。
> str(sectioned)
List of 154
$ :List of 6
..$ :Classes 'PlainTextDocument', 'TextDocument', 'character' atomic [1:1] Developing assessment models Developing models
.. .. ..- attr(*, "Author")= chr "John Smith"
.. .. ..- attr(*, "DateTimeStamp")= POSIXlt[1:1], format: "2013-04-30 12:03:49"
.. .. ..- attr(*, "Description")= chr(0)
.. .. ..- attr(*, "Heading")= chr "Research Focus"
.. .. ..- attr(*, "ID")= chr(0)
.. .. ..- attr(*, "Language")= chr(0)
.. .. ..- attr(*, "LocalMetaData")=List of 4
.. .. .. ..$ foo : chr "bar"
.. .. .. ..$ classification: chr "Technician"
.. .. .. ..$ team : chr ""
.. .. .. ..$ supervisor : chr "Bill Jones"
.. .. ..- attr(*, "Origin")= chr "Smith-John_e.txt"
#etc., all sublists have 6 elements
したがって、すべてPlainTextDocument
の を にするには、次のようにしCorpus
ます。
sectioned.Corpus <- c(sectioned[[1]][[1]], sectioned[[1]][[2]], ..., sectioned[[154]][[6]])
誰でも簡単な方法を提案できますか?
ETA: foo<-unlist(foolist, recursive=FALSE)
PlainTextDocuments のフラット リストを生成しますが、リスト要素を要素ごとにフィードするという問題が残っています。c