Description Usage Arguments Examples
Convert object to input for fulltext (table format).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | as.fulltexttable(x, ...)
## S4 method for signature 'slice'
as.fulltexttable(x, display = "block",
headline = NULL, name = "", interjections = TRUE)
## S4 method for signature 'data.frame'
as.fulltexttable(x, ...)
## S4 method for signature 'character'
as.fulltexttable(x, display = "block",
tag = "para", name = "", beautify = TRUE)
## S4 method for signature 'list'
as.fulltexttable(x, display = "block", tag = "para",
beautify = TRUE)
## S4 method for signature 'fulltexttable'
as.fulltexttable(x, ...)
## S4 method for signature 'data.table'
as.fulltexttable(x)
|
x |
The object to be converted. |
... |
Placeholder for further arguments defined by methods. |
display |
The initial value of the html style argument. Either "block" or "none". Should usually be "block" |
headline |
A headline to prepend. |
name |
An id inserted into tags. |
interjections |
If |
tag |
A tag. |
beautify |
Remove whitespace before interpunctation. |
1 2 3 4 5 6 7 8 9 | library(polmineR)
library(fulltext)
use("polmineR")
p <- partition("GERMAPARLMINI", speaker = "Volker Kauder", date = "2009-11-10")
ftab <- as.fulltexttable(p, headline = "Volker Kauder (CDU)", display = "block")
fulltext(ftab, box = FALSE)
sd <- crosstalk::SharedData$new(ftab)
fulltext::fulltext(sd)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.