as.corpus.textmeta {tosca} | R Documentation |
Transform textmeta to corpus
Description
Transfers data from a textmeta
object to a
corpus
object - the way text data is stored in the
package quanteda
.
Usage
as.corpus.textmeta(
object,
docnames = "id",
docvars = setdiff(colnames(object$meta), "id"),
...
)
Arguments
object |
|
docnames |
Character: string with the column of |
docvars |
Character: vector with columns of |
... |
Additional parameters like |
Value
corpus
object
Examples
texts <- list(A="Give a Man a Fish, and You Feed Him for a Day.
Teach a Man To Fish, and You Feed Him for a Lifetime",
B="So Long, and Thanks for All the Fish",
C="A very able manipulative mathematician, Fisher enjoys a real mastery
in evaluating complicated multiple integrals.")
obj <- textmeta(meta=data.frame(id=c("A", "B", "C", "D"),
title=c("Fishing", "Don't panic!", "Sir Ronald", "Berlin"),
date=c("1885-01-02", "1979-03-04", "1951-05-06", "1967-06-02"),
additionalVariable=1:4, stringsAsFactors=FALSE), text=texts)
corp <- as.corpus.textmeta(obj)
quanteda::docvars(corp)
#quanteda::textstat_summary(corp)
[Package tosca version 0.3-2 Index]