as.markdown {polmineR} | R Documentation |
Get markdown-formatted full text of a partition.
Description
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.
Usage
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,
...
)
Arguments
.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 |
Examples
use(pkg = "RcppCWB", corpus = "REUTERS")
P <- partition("REUTERS", places = "argentina")
as.markdown(P)
as.markdown(P, meta = c("id", "places"))
if (interactive()) read(P, meta = c("id", "places"))
[Package polmineR version 0.8.9 Index]