Get markdown-formatted full text of a partition.
The method is the worker behind the read
-method, which will be called
usually to reconstruct the full text of a partition
and read it. The
as.markdown
-method can be customized for different classes inheriting
from the partition
-class.
as.markdown(.Object, ...) ## S4 method for signature 'partition' as.markdown( .Object, meta = getOption("polmineR.meta"), template = get_template(.Object), cpos = TRUE, cutoff = NULL, verbose = FALSE, ... ) ## S4 method for signature 'subcorpus' as.markdown( .Object, meta = getOption("polmineR.meta"), template = get_template(.Object), cpos = TRUE, cutoff = NULL, verbose = FALSE, ... ) ## S4 method for signature 'plpr_partition' as.markdown( .Object, meta = NULL, template = get_template(.Object), cpos = FALSE, interjections = TRUE, cutoff = NULL, ... ) ## S4 method for signature 'plpr_subcorpus' as.markdown( .Object, meta = NULL, template = get_template(.Object), cpos = FALSE, interjections = TRUE, cutoff = NULL, ... )
.Object |
The object to be converted, a |
... |
further arguments |
meta |
The metainformation (s-attributes) to be displayed. |
template |
A template for formating output. |
cpos |
A |
cutoff |
The maximum number of tokens to reconstruct, to avoid that full text is excessively long. |
verbose |
A |
interjections |
A |
use("polmineR") P <- partition("REUTERS", places = "argentina") as.markdown(P) as.markdown(P, meta = c("id", "places")) if (interactive()) read(P, meta = c("id", "places"))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.