readTagged | R Documentation |
Return a function which reads in a text document containing POS-tagged words.
readTagged(...)
... |
Arguments passed to |
Formally this function is a function generator, i.e., it returns a
function (which reads in a text document) with a well-defined
signature, but can access passed over arguments (...
)
via lexical scoping.
A function
with the following formals:
elem
a named list with the component content
which must
hold the document to be read in or the component uri
holding a
connection object or a character string.
language
a string giving the language.
id
a character giving a unique identifier for the created text document.
The function returns a TaggedTextDocument
representing the
text and metadata extracted from elem$content
or elem$uri
. The
argument id
is used as fallback if elem$uri
is null.
Reader
for basic information on the reader infrastructure
employed by package tm.
# See http://www.nltk.org/book/ch05.html or file ca01 in the Brown corpus
x <- paste("The/at grand/jj jury/nn commented/vbd on/in a/at number/nn of/in",
"other/ap topics/nns ,/, among/in them/ppo the/at Atlanta/np and/cc",
"Fulton/np-tl County/nn-tl purchasing/vbg departments/nns which/wdt",
"it/pps said/vbd ``/`` are/ber well/ql operated/vbn and/cc follow/vb",
"generally/rb accepted/vbn practices/nns which/wdt inure/vb to/in the/at",
"best/jjt interest/nn of/in both/abx governments/nns ''/'' ./.")
vs <- VectorSource(x)
elem <- getElem(stepNext(vs))
(doc <- readTagged()(elem, language = "en", id = "id1"))
tagged_words(doc)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.