Description Usage Arguments Value References See Also Examples
dc_equality
- Extract equality discourse connectors in context.
dc_equality_sub
- Extract equality discourse connectors in context typified as
continuation or elaboration.
1 2 3 4 5 6 7 | dc_equality(text.var, grouping.var, n.before = 1, tot = FALSE,
n.after = n.before, ord.inds = TRUE, markup = c("<<", ">>"),
name = "equality", ...)
dc_equality_sub(text.var, grouping.var, n.before = 1, tot = FALSE,
n.after = n.before, ord.inds = TRUE, markup = c("<<", ">>"),
name = "equality_sub", ...)
|
text.var |
The text variable. |
grouping.var |
The grouping variables. Also takes a single grouping variable or a list of 1 or more grouping variables. |
n.before |
The number of rows before the indexed occurrence. |
tot |
logical. If |
n.after |
The number of rows after the indexed occurrence. |
ord.inds |
logical. If |
markup |
A character vector of length two indicating the left (element
1) and right (element 2) boundary markers to use to highlight the equality
discourse connectors. Use |
name |
A string indicating the name to search for within the internal data sets, typically the function's name. Generally, for internal use. |
... |
Other arguments passed to |
dc_equality
- Returns returns a list of 2:
counts |
A |
equality |
A |
dc_equality_sub
- Returns returns a list of 4:
counts |
A |
none |
A |
continuation |
A |
elaboration |
A |
Alemany, L. A. (2005). Representing discourse for automatic text summarization via shallow NLP techniques (Unpublished doctoral dissertation). Universitat de Barcelona, Barcelona.
http://russell.famaf.unc.edu.ar/~laura/shallowdisc4summ/discmar
1 2 3 4 5 6 7 8 9 10 11 | with(pres_debates2012[1:200, ], dc_equality(dialogue, person))
out <- with(pres_debates2012[1:200, ], dc_equality_sub(dialogue, person))
out[1]
out[2]
out[3]
out[4]
plot(out)
## Save externally use .doc or .txt
## print(out[[3]], file="elaboration_equality.doc")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.