Learn R Programming

quanteda (version 0.9.9-50)

textplot_xray: plot the dispersion of key word(s)

Description

Plots a dispersion or "x-ray" plot of selected word pattern(s) across one or more texts. The format of the plot depends on the number of kwic class objects passed: if there is only one document, keywords are plotted one below the other. If there are multiple documents the documents are plotted one below the other, with keywords shown side-by-side. Given that this returns a ggplot object, you can modify the plot by adding ggplot layers (see example).

Usage

textplot_xray(..., scale = c("absolute", "relative"), sort = FALSE)

Arguments

...
any number of kwic class objects
scale
whether to scale the token index axis by absolute position of the token in the document or by relative position. Defaults are absolute for single document and relative for multiple documents.
sort
whether to sort the rows of a multiple document plot by document name

Value

plot.kwic returns a ggplot object

Examples

Run this code
## Not run: ------------------------------------
# data_corpus_inauguralPost70 <- corpus_subset(data_corpus_inaugural, Year > 1970)
# # compare multiple documents
# textplot_xray(kwic(data_corpus_inauguralPost70, "american"))
# textplot_xray(kwic(data_corpus_inauguralPost70, "american"), scale = "absolute")
# # compare multiple terms across multiple documents
# textplot_xray(kwic(data_corpus_inauguralPost70, "america*"), 
#               kwic(data_corpus_inauguralPost70, "people"))
# 
# # how to modify the ggplot with different options
# library(ggplot2)
# g <- textplot_xray(kwic(data_corpus_inauguralPost70, "american"), 
#                    kwic(data_corpus_inauguralPost70, "people"))
# g + aes(color = keyword) + scale_color_manual(values = c('red', 'blue'))
## ---------------------------------------------

Run the code above in your browser using DataLab