Plot a dfm object as a wordcloud, where the feature labels are plotted with their sizes proportional to their numerical values in the dfm. When comparison = TRUE, it plots comparison word clouds by document.

textplot_wordcloud(x, min_size = 0.5, max_size = 4, min_count = 3,
  max_words = 500, color = "darkblue", font = NULL, adjust = 0,
  rotation = 0.1, random_order = FALSE, random_color = FALSE,
  ordered_color = FALSE, labelcolor = "gray20", labelsize = 1.5,
  labeloffset = 0, fixed_aspect = TRUE, ..., comparison = FALSE)

Arguments

x

a dfm object

min_size

size of the smallest word

max_size

size of the largest word

min_count

words with frequency below min_count will not be plotted

max_words

maximum number of words to be plotted. least frequent terms dropped.

color

color of words from least to most frequent

font

font-family of words and labels. Use default font if NULL.

adjust

ajust sizes of words by a constant. Useful for non-Engish words for which R fails to obtain correct sizes.

rotation

proportion of words with 90 degree rotation

random_order

plot words in random order. If FALSE, they will be plotted in decreasing frequency.

random_color

choose colors randomly from the colors. If FALSE, the color is chosen based on the frequency

ordered_color

if TRUE, then colors are assigned to words in order.

labelcolor

color of group labels. Only used when compariosn=TRUE.

labelsize

size of group labels. Only used when compariosn=TRUE.

labeloffset

position of group labels. Only used when comparison=TRUE.

fixed_aspect

if TRUE, the aspect ratio is fixed. Variable aspect ratio only supported if rotation = 0

...

additional parameters. Only used to make it compatible with wordcloud

comparison

if TRUE, plot a wordclound that compares documents in the same way as comparison.cloud

Details

The default is to plot the word cloud of all features, summed across documents. To produce word cloud plots for specific document or set of documents, you need to slice out the document(s) from the dfm object.

Comparison wordcloud plots may be plotted by setting comparison = TRUE, which plots a separate grouping for each document in the dfm. This means that you will need to slice out just a few documents from the dfm, or to create a dfm where the "documents" represent a subset or a grouping of documents by some document variable.

Examples

# plot the features (without stopwords) from Obama's inaugural addresses set.seed(10) obama_dfm <- dfm(corpus_subset(data_corpus_inaugural, President == "Obama"), remove = stopwords("english"), remove_punct = TRUE) %>% dfm_trim(min_count = 3) # basic wordcloud textplot_wordcloud(obama_dfm)
#> Warning: americans could not be fit on page. It will not be plotted.
#> Warning: government could not be fit on page. It will not be plotted.
#> Warning: women could not be fit on page. It will not be plotted.
#> Warning: power could not be fit on page. It will not be plotted.
#> Warning: believe could not be fit on page. It will not be plotted.
#> Warning: creed could not be fit on page. It will not be plotted.
#> Warning: years could not be fit on page. It will not be plotted.
#> Warning: founding could not be fit on page. It will not be plotted.
#> Warning: hope could not be fit on page. It will not be plotted.
#> Warning: things could not be fit on page. It will not be plotted.
#> Warning: enduring could not be fit on page. It will not be plotted.
#> Warning: history could not be fit on page. It will not be plotted.
#> Warning: happiness could not be fit on page. It will not be plotted.
#> Warning: greater could not be fit on page. It will not be plotted.
#> Warning: meet could not be fit on page. It will not be plotted.
#> Warning: courage could not be fit on page. It will not be plotted.
#> Warning: meaning could not be fit on page. It will not be plotted.
#> Warning: moment could not be fit on page. It will not be plotted.
#> Warning: upon could not be fit on page. It will not be plotted.
#> Warning: children could not be fit on page. It will not be plotted.
#> Warning: requires could not be fit on page. It will not be plotted.
#> Warning: complete could not be fit on page. It will not be plotted.
#> Warning: prosperity could not be fit on page. It will not be plotted.
#> Warning: ideals could not be fit on page. It will not be plotted.
#> Warning: true could not be fit on page. It will not be plotted.
#> Warning: economy could not be fit on page. It will not be plotted.
#> Warning: also could not be fit on page. It will not be plotted.
#> Warning: schools could not be fit on page. It will not be plotted.
#> Warning: many could not be fit on page. It will not be plotted.
#> Warning: america's could not be fit on page. It will not be plotted.
#> Warning: say could not be fit on page. It will not be plotted.
#> Warning: face could not be fit on page. It will not be plotted.
#> Warning: purpose could not be fit on page. It will not be plotted.
#> Warning: come could not be fit on page. It will not be plotted.
#> Warning: end could not be fit on page. It will not be plotted.
#> Warning: carry could not be fit on page. It will not be plotted.
#> Warning: forward could not be fit on page. It will not be plotted.
#> Warning: promise could not be fit on page. It will not be plotted.
#> Warning: understand could not be fit on page. It will not be plotted.
#> Warning: never could not be fit on page. It will not be plotted.
#> Warning: path could not be fit on page. It will not be plotted.
#> Warning: seek could not be fit on page. It will not be plotted.
#> Warning: rather could not be fit on page. It will not be plotted.
#> Warning: build could not be fit on page. It will not be plotted.
#> Warning: whether could not be fit on page. It will not be plotted.
#> Warning: blood could not be fit on page. It will not be plotted.
#> Warning: generations could not be fit on page. It will not be plotted.
#> Warning: alone could not be fit on page. It will not be plotted.
#> Warning: security could not be fit on page. It will not be plotted.
#> Warning: principles could not be fit on page. It will not be plotted.
#> Warning: way could not be fit on page. It will not be plotted.
#> Warning: united could not be fit on page. It will not be plotted.
#> Warning: change could not be fit on page. It will not be plotted.
#> Warning: values could not be fit on page. It will not be plotted.
#> Warning: truths could not be fit on page. It will not be plotted.
#> Warning: great could not be fit on page. It will not be plotted.
#> Warning: bless could not be fit on page. It will not be plotted.
#> Warning: stand could not be fit on page. It will not be plotted.
#> Warning: thank could not be fit on page. It will not be plotted.
#> Warning: president could not be fit on page. It will not be plotted.
#> Warning: service could not be fit on page. It will not be plotted.
#> Warning: taken could not be fit on page. It will not be plotted.
#> Warning: storms could not be fit on page. It will not be plotted.
#> Warning: carried could not be fit on page. It will not be plotted.
#> Warning: understood could not be fit on page. It will not be plotted.
#> Warning: health could not be fit on page. It will not be plotted.
#> Warning: planet could not be fit on page. It will not be plotted.
#> Warning: across could not be fit on page. It will not be plotted.
#> Warning: challenges could not be fit on page. It will not be plotted.
#> Warning: met could not be fit on page. It will not be plotted.
#> Warning: remain could not be fit on page. It will not be plotted.
#> Warning: better could not be fit on page. It will not be plotted.
#> Warning: individual could not be fit on page. It will not be plotted.
#> Warning: powerful could not be fit on page. It will not be plotted.
#> Warning: workers could not be fit on page. It will not be plotted.
#> Warning: capacity could not be fit on page. It will not be plotted.
#> Warning: science could not be fit on page. It will not be plotted.
#> Warning: demands could not be fit on page. It will not be plotted.
#> Warning: question could not be fit on page. It will not be plotted.
#> Warning: small could not be fit on page. It will not be plotted.
#> Warning: afford could not be fit on page. It will not be plotted.
#> Warning: answer could not be fit on page. It will not be plotted.
#> Warning: light could not be fit on page. It will not be plotted.
#> Warning: market could not be fit on page. It will not be plotted.
#> Warning: force could not be fit on page. It will not be plotted.
#> Warning: without could not be fit on page. It will not be plotted.
#> Warning: always could not be fit on page. It will not be plotted.
#> Warning: extend could not be fit on page. It will not be plotted.
#> Warning: opportunity could not be fit on page. It will not be plotted.
#> Warning: defense could not be fit on page. It will not be plotted.
#> Warning: rule could not be fit on page. It will not be plotted.
#> Warning: law could not be fit on page. It will not be plotted.
#> Warning: rights could not be fit on page. It will not be plotted.
#> Warning: man could not be fit on page. It will not be plotted.
#> Warning: father could not be fit on page. It will not be plotted.
#> Warning: child could not be fit on page. It will not be plotted.
#> Warning: dignity could not be fit on page. It will not be plotted.
#> Warning: guided could not be fit on page. It will not be plotted.
#> Warning: effort could not be fit on page. It will not be plotted.
#> Warning: advance could not be fit on page. It will not be plotted.
#> Warning: strength could not be fit on page. It will not be plotted.
#> Warning: drawn could not be fit on page. It will not be plotted.
#> Warning: shall could not be fit on page. It will not be plotted.
#> Warning: play could not be fit on page. It will not be plotted.
#> Warning: pledge could not be fit on page. It will not be plotted.
#> Warning: remember could not be fit on page. It will not be plotted.
#> Warning: brave could not be fit on page. It will not be plotted.
#> Warning: faith could not be fit on page. It will not be plotted.
#> Warning: take could not be fit on page. It will not be plotted.
#> Warning: hours could not be fit on page. It will not be plotted.
#> Warning: seize could not be fit on page. It will not be plotted.
#> Warning: knowledge could not be fit on page. It will not be plotted.
#> Warning: states could not be fit on page. It will not be plotted.
#> Warning: made could not be fit on page. It will not be plotted.
#> Warning: created could not be fit on page. It will not be plotted.
#> Warning: knowing could not be fit on page. It will not be plotted.
#> Warning: require could not be fit on page. It will not be plotted.
# plot in colors with some additional options textplot_wordcloud(obama_dfm, rotation = 0.25, color = rev(RColorBrewer::brewer.pal(10, "RdBu")))
#> Warning: citizens could not be fit on page. It will not be plotted.
#> Warning: americans could not be fit on page. It will not be plotted.
#> Warning: equal could not be fit on page. It will not be plotted.
#> Warning: government could not be fit on page. It will not be plotted.
#> Warning: liberty could not be fit on page. It will not be plotted.
#> Warning: women could not be fit on page. It will not be plotted.
#> Warning: power could not be fit on page. It will not be plotted.
#> Warning: creed could not be fit on page. It will not be plotted.
#> Warning: years could not be fit on page. It will not be plotted.
#> Warning: founding could not be fit on page. It will not be plotted.
#> Warning: hope could not be fit on page. It will not be plotted.
#> Warning: things could not be fit on page. It will not be plotted.
#> Warning: enduring could not be fit on page. It will not be plotted.
#> Warning: history could not be fit on page. It will not be plotted.
#> Warning: happiness could not be fit on page. It will not be plotted.
#> Warning: greater could not be fit on page. It will not be plotted.
#> Warning: courage could not be fit on page. It will not be plotted.
#> Warning: nations could not be fit on page. It will not be plotted.
#> Warning: meaning could not be fit on page. It will not be plotted.
#> Warning: moment could not be fit on page. It will not be plotted.
#> Warning: upon could not be fit on page. It will not be plotted.
#> Warning: children could not be fit on page. It will not be plotted.
#> Warning: requires could not be fit on page. It will not be plotted.
#> Warning: prosperity could not be fit on page. It will not be plotted.
#> Warning: ideals could not be fit on page. It will not be plotted.
#> Warning: economy could not be fit on page. It will not be plotted.
#> Warning: also could not be fit on page. It will not be plotted.
#> Warning: schools could not be fit on page. It will not be plotted.
#> Warning: many could not be fit on page. It will not be plotted.
#> Warning: america's could not be fit on page. It will not be plotted.
#> Warning: purpose could not be fit on page. It will not be plotted.
#> Warning: come could not be fit on page. It will not be plotted.
#> Warning: carry could not be fit on page. It will not be plotted.
#> Warning: forward could not be fit on page. It will not be plotted.
#> Warning: promise could not be fit on page. It will not be plotted.
#> Warning: understand could not be fit on page. It will not be plotted.
#> Warning: never could not be fit on page. It will not be plotted.
#> Warning: path could not be fit on page. It will not be plotted.
#> Warning: seek could not be fit on page. It will not be plotted.
#> Warning: rather could not be fit on page. It will not be plotted.
#> Warning: like could not be fit on page. It will not be plotted.
#> Warning: build could not be fit on page. It will not be plotted.
#> Warning: whether could not be fit on page. It will not be plotted.
#> Warning: blood could not be fit on page. It will not be plotted.
#> Warning: generations could not be fit on page. It will not be plotted.
#> Warning: alone could not be fit on page. It will not be plotted.
#> Warning: security could not be fit on page. It will not be plotted.
#> Warning: principles could not be fit on page. It will not be plotted.
#> Warning: way could not be fit on page. It will not be plotted.
#> Warning: united could not be fit on page. It will not be plotted.
#> Warning: change could not be fit on page. It will not be plotted.
#> Warning: values could not be fit on page. It will not be plotted.
#> Warning: truths could not be fit on page. It will not be plotted.
#> Warning: great could not be fit on page. It will not be plotted.
#> Warning: bless could not be fit on page. It will not be plotted.
#> Warning: stand could not be fit on page. It will not be plotted.
#> Warning: thank could not be fit on page. It will not be plotted.
#> Warning: president could not be fit on page. It will not be plotted.
#> Warning: service could not be fit on page. It will not be plotted.
#> Warning: taken could not be fit on page. It will not be plotted.
#> Warning: storms could not be fit on page. It will not be plotted.
#> Warning: carried could not be fit on page. It will not be plotted.
#> Warning: understood could not be fit on page. It will not be plotted.
#> Warning: health could not be fit on page. It will not be plotted.
#> Warning: planet could not be fit on page. It will not be plotted.
#> Warning: across could not be fit on page. It will not be plotted.
#> Warning: fear could not be fit on page. It will not be plotted.
#> Warning: challenges could not be fit on page. It will not be plotted.
#> Warning: remain could not be fit on page. It will not be plotted.
#> Warning: individual could not be fit on page. It will not be plotted.
#> Warning: powerful could not be fit on page. It will not be plotted.
#> Warning: workers could not be fit on page. It will not be plotted.
#> Warning: last could not be fit on page. It will not be plotted.
#> Warning: capacity could not be fit on page. It will not be plotted.
#> Warning: science could not be fit on page. It will not be plotted.
#> Warning: demands could not be fit on page. It will not be plotted.
#> Warning: question could not be fit on page. It will not be plotted.
#> Warning: small could not be fit on page. It will not be plotted.
#> Warning: afford could not be fit on page. It will not be plotted.
#> Warning: answer could not be fit on page. It will not be plotted.
#> Warning: light could not be fit on page. It will not be plotted.
#> Warning: market could not be fit on page. It will not be plotted.
#> Warning: force could not be fit on page. It will not be plotted.
#> Warning: without could not be fit on page. It will not be plotted.
#> Warning: always could not be fit on page. It will not be plotted.
#> Warning: extend could not be fit on page. It will not be plotted.
#> Warning: opportunity could not be fit on page. It will not be plotted.
#> Warning: defense could not be fit on page. It will not be plotted.
#> Warning: rule could not be fit on page. It will not be plotted.
#> Warning: rights could not be fit on page. It will not be plotted.
#> Warning: man could not be fit on page. It will not be plotted.
#> Warning: father could not be fit on page. It will not be plotted.
#> Warning: child could not be fit on page. It will not be plotted.
#> Warning: dignity could not be fit on page. It will not be plotted.
#> Warning: guided could not be fit on page. It will not be plotted.
#> Warning: effort could not be fit on page. It will not be plotted.
#> Warning: advance could not be fit on page. It will not be plotted.
#> Warning: strength could not be fit on page. It will not be plotted.
#> Warning: drawn could not be fit on page. It will not be plotted.
#> Warning: shall could not be fit on page. It will not be plotted.
#> Warning: play could not be fit on page. It will not be plotted.
#> Warning: pledge could not be fit on page. It will not be plotted.
#> Warning: remember could not be fit on page. It will not be plotted.
#> Warning: brave could not be fit on page. It will not be plotted.
#> Warning: faith could not be fit on page. It will not be plotted.
#> Warning: take could not be fit on page. It will not be plotted.
#> Warning: hours could not be fit on page. It will not be plotted.
#> Warning: seize could not be fit on page. It will not be plotted.
#> Warning: knowledge could not be fit on page. It will not be plotted.
#> Warning: states could not be fit on page. It will not be plotted.
#> Warning: made could not be fit on page. It will not be plotted.
#> Warning: created could not be fit on page. It will not be plotted.
#> Warning: knowing could not be fit on page. It will not be plotted.
#> Warning: require could not be fit on page. It will not be plotted.
# other display options col <- sapply(seq(0.1, 1, 0.1), function(x) adjustcolor("#1F78B4", x)) textplot_wordcloud(obama_dfm, adjust = 0.5, random_order = FALSE, color = col, rotation = FALSE)
#> Warning: government could not be fit on page. It will not be plotted.
#> Warning: liberty could not be fit on page. It will not be plotted.
#> Warning: women could not be fit on page. It will not be plotted.
#> Warning: believe could not be fit on page. It will not be plotted.
#> Warning: creed could not be fit on page. It will not be plotted.
#> Warning: years could not be fit on page. It will not be plotted.
#> Warning: founding could not be fit on page. It will not be plotted.
#> Warning: hard could not be fit on page. It will not be plotted.
#> Warning: care could not be fit on page. It will not be plotted.
#> Warning: hope could not be fit on page. It will not be plotted.
#> Warning: things could not be fit on page. It will not be plotted.
#> Warning: enduring could not be fit on page. It will not be plotted.
#> Warning: history could not be fit on page. It will not be plotted.
#> Warning: free could not be fit on page. It will not be plotted.
#> Warning: happiness could not be fit on page. It will not be plotted.
#> Warning: earth could not be fit on page. It will not be plotted.
#> Warning: greater could not be fit on page. It will not be plotted.
#> Warning: meet could not be fit on page. It will not be plotted.
#> Warning: courage could not be fit on page. It will not be plotted.
#> Warning: nations could not be fit on page. It will not be plotted.
#> Warning: meaning could not be fit on page. It will not be plotted.
#> Warning: moment could not be fit on page. It will not be plotted.
#> Warning: upon could not be fit on page. It will not be plotted.
#> Warning: children could not be fit on page. It will not be plotted.
#> Warning: requires could not be fit on page. It will not be plotted.
#> Warning: complete could not be fit on page. It will not be plotted.
#> Warning: fellow could not be fit on page. It will not be plotted.
#> Warning: prosperity could not be fit on page. It will not be plotted.
#> Warning: ideals could not be fit on page. It will not be plotted.
#> Warning: true could not be fit on page. It will not be plotted.
#> Warning: economy could not be fit on page. It will not be plotted.
#> Warning: schools could not be fit on page. It will not be plotted.
#> Warning: many could not be fit on page. It will not be plotted.
#> Warning: america's could not be fit on page. It will not be plotted.
#> Warning: purpose could not be fit on page. It will not be plotted.
#> Warning: come could not be fit on page. It will not be plotted.
#> Warning: end could not be fit on page. It will not be plotted.
#> Warning: carry could not be fit on page. It will not be plotted.
#> Warning: forward could not be fit on page. It will not be plotted.
#> Warning: gift could not be fit on page. It will not be plotted.
#> Warning: promise could not be fit on page. It will not be plotted.
#> Warning: understand could not be fit on page. It will not be plotted.
#> Warning: never could not be fit on page. It will not be plotted.
#> Warning: path could not be fit on page. It will not be plotted.
#> Warning: seek could not be fit on page. It will not be plotted.
#> Warning: rather could not be fit on page. It will not be plotted.
#> Warning: build could not be fit on page. It will not be plotted.
#> Warning: whether could not be fit on page. It will not be plotted.
#> Warning: find could not be fit on page. It will not be plotted.
#> Warning: blood could not be fit on page. It will not be plotted.
#> Warning: generations could not be fit on page. It will not be plotted.
#> Warning: alone could not be fit on page. It will not be plotted.
#> Warning: security could not be fit on page. It will not be plotted.
#> Warning: principles could not be fit on page. It will not be plotted.
#> Warning: way could not be fit on page. It will not be plotted.
#> Warning: united could not be fit on page. It will not be plotted.
#> Warning: change could not be fit on page. It will not be plotted.
#> Warning: values could not be fit on page. It will not be plotted.
#> Warning: truths could not be fit on page. It will not be plotted.
#> Warning: great could not be fit on page. It will not be plotted.
#> Warning: stand could not be fit on page. It will not be plotted.
#> Warning: thank could not be fit on page. It will not be plotted.
#> Warning: president could not be fit on page. It will not be plotted.
#> Warning: service could not be fit on page. It will not be plotted.
#> Warning: taken could not be fit on page. It will not be plotted.
#> Warning: storms could not be fit on page. It will not be plotted.
#> Warning: carried could not be fit on page. It will not be plotted.
#> Warning: understood could not be fit on page. It will not be plotted.
#> Warning: health could not be fit on page. It will not be plotted.
#> Warning: planet could not be fit on page. It will not be plotted.
#> Warning: across could not be fit on page. It will not be plotted.
#> Warning: fear could not be fit on page. It will not be plotted.
#> Warning: challenges could not be fit on page. It will not be plotted.
#> Warning: remain could not be fit on page. It will not be plotted.
#> Warning: better could not be fit on page. It will not be plotted.
#> Warning: individual could not be fit on page. It will not be plotted.
#> Warning: powerful could not be fit on page. It will not be plotted.
#> Warning: workers could not be fit on page. It will not be plotted.
#> Warning: last could not be fit on page. It will not be plotted.
#> Warning: capacity could not be fit on page. It will not be plotted.
#> Warning: science could not be fit on page. It will not be plotted.
#> Warning: demands could not be fit on page. It will not be plotted.
#> Warning: question could not be fit on page. It will not be plotted.
#> Warning: small could not be fit on page. It will not be plotted.
#> Warning: afford could not be fit on page. It will not be plotted.
#> Warning: answer could not be fit on page. It will not be plotted.
#> Warning: light could not be fit on page. It will not be plotted.
#> Warning: market could not be fit on page. It will not be plotted.
#> Warning: force could not be fit on page. It will not be plotted.
#> Warning: without could not be fit on page. It will not be plotted.
#> Warning: always could not be fit on page. It will not be plotted.
#> Warning: extend could not be fit on page. It will not be plotted.
#> Warning: opportunity could not be fit on page. It will not be plotted.
#> Warning: defense could not be fit on page. It will not be plotted.
#> Warning: rule could not be fit on page. It will not be plotted.
#> Warning: law could not be fit on page. It will not be plotted.
#> Warning: rights could not be fit on page. It will not be plotted.
#> Warning: man could not be fit on page. It will not be plotted.
#> Warning: father could not be fit on page. It will not be plotted.
#> Warning: child could not be fit on page. It will not be plotted.
#> Warning: dignity could not be fit on page. It will not be plotted.
#> Warning: guided could not be fit on page. It will not be plotted.
#> Warning: effort could not be fit on page. It will not be plotted.
#> Warning: old could not be fit on page. It will not be plotted.
#> Warning: advance could not be fit on page. It will not be plotted.
#> Warning: strength could not be fit on page. It will not be plotted.
#> Warning: drawn could not be fit on page. It will not be plotted.
#> Warning: shall could not be fit on page. It will not be plotted.
#> Warning: play could not be fit on page. It will not be plotted.
#> Warning: pledge could not be fit on page. It will not be plotted.
#> Warning: remember could not be fit on page. It will not be plotted.
#> Warning: brave could not be fit on page. It will not be plotted.
#> Warning: faith could not be fit on page. It will not be plotted.
#> Warning: take could not be fit on page. It will not be plotted.
#> Warning: hours could not be fit on page. It will not be plotted.
#> Warning: seize could not be fit on page. It will not be plotted.
#> Warning: knowledge could not be fit on page. It will not be plotted.
#> Warning: states could not be fit on page. It will not be plotted.
#> Warning: made could not be fit on page. It will not be plotted.
#> Warning: created could not be fit on page. It will not be plotted.
#> Warning: knowing could not be fit on page. It will not be plotted.
#> Warning: require could not be fit on page. It will not be plotted.
# comparison plot of Obama v. Trump obama_trump_dfm <- dfm(corpus_subset(data_corpus_inaugural, President %in% c("Obama", "Trump")), remove = stopwords("english"), remove_punct = TRUE, groups = "President") %>% dfm_trim(min_count = 3) textplot_wordcloud(obama_trump_dfm, comparison = TRUE, max_words = 300, color = c("blue", "red"))
#> Warning: america could not be fit on page. It will not be plotted.
#> Warning: protected could not be fit on page. It will not be plotted.
#> Warning: dreams could not be fit on page. It will not be plotted.
#> Warning: right could not be fit on page. It will not be plotted.
#> Warning: never could not be fit on page. It will not be plotted.
#> Warning: great could not be fit on page. It will not be plotted.
#> Warning: everyone could not be fit on page. It will not be plotted.
#> Warning: president could not be fit on page. It will not be plotted.
#> Warning: across could not be fit on page. It will not be plotted.
#> Warning: bring could not be fit on page. It will not be plotted.
#> Warning: many could not be fit on page. It will not be plotted.
#> Warning: people could not be fit on page. It will not be plotted.
#> Warning: freedom could not be fit on page. It will not be plotted.
#> Warning: common could not be fit on page. It will not be plotted.
#> Warning: millions could not be fit on page. It will not be plotted.
#> Warning: foreign could not be fit on page. It will not be plotted.
#> Warning: countries could not be fit on page. It will not be plotted.
#> Warning: world could not be fit on page. It will not be plotted.
#> Warning: factories could not be fit on page. It will not be plotted.
#> Warning: borders could not be fit on page. It will not be plotted.
#> Warning: capital could not be fit on page. It will not be plotted.
#> Warning: liberty could not be fit on page. It will not be plotted.
#> Warning: families could not be fit on page. It will not be plotted.
#> Warning: well could not be fit on page. It will not be plotted.
#> Warning: believe could not be fit on page. It will not be plotted.
#> Warning: creed could not be fit on page. It will not be plotted.
#> Warning: day could not be fit on page. It will not be plotted.
#> Warning: now could not be fit on page. It will not be plotted.
#> Warning: words could not be fit on page. It will not be plotted.
#> Warning: just could not be fit on page. It will not be plotted.
#> Warning: founding could not be fit on page. It will not be plotted.
#> Warning: crisis could not be fit on page. It will not be plotted.
#> Warning: hard could not be fit on page. It will not be plotted.
#> Warning: care could not be fit on page. It will not be plotted.
#> Warning: hope could not be fit on page. It will not be plotted.
#> Warning: things could not be fit on page. It will not be plotted.
#> Warning: enduring could not be fit on page. It will not be plotted.
#> Warning: history could not be fit on page. It will not be plotted.
#> Warning: happiness could not be fit on page. It will not be plotted.
#> Warning: greater could not be fit on page. It will not be plotted.
#> Warning: meet could not be fit on page. It will not be plotted.
#> Warning: upon could not be fit on page. It will not be plotted.
#> Warning: requires could not be fit on page. It will not be plotted.
#> Warning: complete could not be fit on page. It will not be plotted.
#> Warning: power could not be fit on page. It will not be plotted.
#> Warning: make could not be fit on page. It will not be plotted.
#> Warning: forgotten could not be fit on page. It will not be plotted.
#> Warning: loyalty could not be fit on page. It will not be plotted.
#> Warning: destiny could not be fit on page. It will not be plotted.
#> Warning: allegiance could not be fit on page. It will not be plotted.
#> Warning: fight could not be fit on page. It will not be plotted.
#> Warning: national could not be fit on page. It will not be plotted.
#> Warning: anyone could not be fit on page. It will not be plotted.
#> Warning: another could not be fit on page. It will not be plotted.
#> Warning: follow could not be fit on page. It will not be plotted.
#> Warning: victories could not be fit on page. It will not be plotted.
#> Warning: party could not be fit on page. It will not be plotted.
#> Warning: whether could not be fit on page. It will not be plotted.
#> Warning: united could not be fit on page. It will not be plotted.
#> Warning: every could not be fit on page. It will not be plotted.
#> Warning: task could not be fit on page. It will not be plotted.
#> Warning: ideals could not be fit on page. It will not be plotted.
#> Warning: economy could not be fit on page. It will not be plotted.
#> Warning: also could not be fit on page. It will not be plotted.
#> Warning: say could not be fit on page. It will not be plotted.
#> Warning: purpose could not be fit on page. It will not be plotted.
#> Warning: end could not be fit on page. It will not be plotted.
#> Warning: gift could not be fit on page. It will not be plotted.
#> Warning: path could not be fit on page. It will not be plotted.
#> Warning: generations could not be fit on page. It will not be plotted.
#> Warning: alone could not be fit on page. It will not be plotted.
#> Warning: security could not be fit on page. It will not be plotted.
#> Warning: principles could not be fit on page. It will not be plotted.
#> Warning: change could not be fit on page. It will not be plotted.
#> Warning: values could not be fit on page. It will not be plotted.
#> Warning: truths could not be fit on page. It will not be plotted.
#> Warning: citizens could not be fit on page. It will not be plotted.
#> Warning: americans could not be fit on page. It will not be plotted.
#> Warning: done could not be fit on page. It will not be plotted.
#> Warning: action could not be fit on page. It will not be plotted.
#> Warning: longer could not be fit on page. It will not be plotted.
#> Warning: good could not be fit on page. It will not be plotted.
#> Warning: success could not be fit on page. It will not be plotted.
#> Warning: even could not be fit on page. It will not be plotted.
#> Warning: safe could not be fit on page. It will not be plotted.
#> Warning: spirit could not be fit on page. It will not be plotted.
#> Warning: nations could not be fit on page. It will not be plotted.
#> Warning: service could not be fit on page. It will not be plotted.
#> Warning: taken could not be fit on page. It will not be plotted.
#> Warning: storms could not be fit on page. It will not be plotted.
#> Warning: carried could not be fit on page. It will not be plotted.
#> Warning: health could not be fit on page. It will not be plotted.
#> Warning: planet could not be fit on page. It will not be plotted.
#> Warning: met could not be fit on page. It will not be plotted.
#> Warning: remain could not be fit on page. It will not be plotted.
#> Warning: better could not be fit on page. It will not be plotted.
#> Warning: individual could not be fit on page. It will not be plotted.
#> Warning: powerful could not be fit on page. It will not be plotted.
#> Warning: last could not be fit on page. It will not be plotted.
#> Warning: capacity could not be fit on page. It will not be plotted.
#> Warning: science could not be fit on page. It will not be plotted.
#> Warning: question could not be fit on page. It will not be plotted.
#> Warning: afford could not be fit on page. It will not be plotted.
#> Warning: answer could not be fit on page. It will not be plotted.
#> Warning: light could not be fit on page. It will not be plotted.
#> Warning: market could not be fit on page. It will not be plotted.
#> Warning: force could not be fit on page. It will not be plotted.
#> Warning: without could not be fit on page. It will not be plotted.
#> Warning: extend could not be fit on page. It will not be plotted.
#> Warning: opportunity could not be fit on page. It will not be plotted.
#> Warning: defense could not be fit on page. It will not be plotted.
#> Warning: rule could not be fit on page. It will not be plotted.
#> Warning: rights could not be fit on page. It will not be plotted.
#> Warning: man could not be fit on page. It will not be plotted.
#> Warning: father could not be fit on page. It will not be plotted.
#> Warning: dignity could not be fit on page. It will not be plotted.
#> Warning: guided could not be fit on page. It will not be plotted.
#> Warning: advance could not be fit on page. It will not be plotted.
#> Warning: drawn could not be fit on page. It will not be plotted.
#> Warning: shall could not be fit on page. It will not be plotted.
#> Warning: play could not be fit on page. It will not be plotted.
#> Warning: pledge could not be fit on page. It will not be plotted.
#> Warning: brave could not be fit on page. It will not be plotted.
#> Warning: faith could not be fit on page. It will not be plotted.
#> Warning: hours could not be fit on page. It will not be plotted.
#> Warning: seize could not be fit on page. It will not be plotted.
#> Warning: created could not be fit on page. It will not be plotted.
#> Warning: knowing could not be fit on page. It will not be plotted.
#> Warning: require could not be fit on page. It will not be plotted.
#> Warning: together could not be fit on page. It will not be plotted.
#> Warning: workers could not be fit on page. It will not be plotted.
#> Warning: small could not be fit on page. It will not be plotted.
#> Warning: always could not be fit on page. It will not be plotted.
#> Warning: strength could not be fit on page. It will not be plotted.
#> Warning: states could not be fit on page. It will not be plotted.
#> Warning: made could not be fit on page. It will not be plotted.
#> Warning: free could not be fit on page. It will not be plotted.
#> Warning: courage could not be fit on page. It will not be plotted.
#> Warning: meaning could not be fit on page. It will not be plotted.
#> Warning: nation could not be fit on page. It will not be plotted.
#> Warning: oath could not be fit on page. It will not be plotted.
#> Warning: long could not be fit on page. It will not be plotted.
#> Warning: forward could not be fit on page. It will not be plotted.
#> Warning: seek could not be fit on page. It will not be plotted.
#> Warning: bless could not be fit on page. It will not be plotted.
#> Warning: fellow could not be fit on page. It will not be plotted.
#> Warning: prosperity could not be fit on page. It will not be plotted.
#> Warning: schools could not be fit on page. It will not be plotted.
#> Warning: america's could not be fit on page. It will not be plotted.
#> Warning: come could not be fit on page. It will not be plotted.
#> Warning: carry could not be fit on page. It will not be plotted.
#> Warning: promise could not be fit on page. It will not be plotted.
#> Warning: understand could not be fit on page. It will not be plotted.
#> Warning: rather could not be fit on page. It will not be plotted.
#> Warning: build could not be fit on page. It will not be plotted.
#> Warning: blood could not be fit on page. It will not be plotted.
#> Warning: government could not be fit on page. It will not be plotted.
#> Warning: today could not be fit on page. It will not be plotted.
#> Warning: throughout could not be fit on page. It will not be plotted.
#> Warning: transition could not be fit on page. It will not be plotted.
#> Warning: part could not be fit on page. It will not be plotted.
#> Warning: confidence could not be fit on page. It will not be plotted.
#> Warning: gather could not be fit on page. It will not be plotted.
#> Warning: politics could not be fit on page. It will not be plotted.
#> Warning: young could not be fit on page. It will not be plotted.
#> Warning: labor could not be fit on page. It will not be plotted.
#> Warning: birth could not be fit on page. It will not be plotted.
#> Warning: minds could not be fit on page. It will not be plotted.
#> Warning: interests could not be fit on page. It will not be plotted.
#> Warning: roads could not be fit on page. It will not be plotted.
#> Warning: restore could not be fit on page. It will not be plotted.
#> Warning: cost could not be fit on page. It will not be plotted.
#> Warning: harness could not be fit on page. It will not be plotted.
#> Warning: big could not be fit on page. It will not be plotted.
#> Warning: born could not be fit on page. It will not be plotted.
#> Warning: alliances could not be fit on page. It will not be plotted.
#> Warning: protect could not be fit on page. It will not be plotted.
#> Warning: define could not be fit on page. It will not be plotted.
#> Warning: job could not be fit on page. It will not be plotted.
#> Warning: celebration could not be fit on page. It will not be plotted.
#> Warning: patriots could not be fit on page. It will not be plotted.
#> Warning: shores could not be fit on page. It will not be plotted.
#> Warning: justice could not be fit on page. It will not be plotted.
#> Warning: today's could not be fit on page. It will not be plotted.
#> Warning: middle could not be fit on page. It will not be plotted.
#> Warning: pride could not be fit on page. It will not be plotted.
#> Warning: poverty could not be fit on page. It will not be plotted.
#> Warning: forever could not be fit on page. It will not be plotted.
#> Warning: hear could not be fit on page. It will not be plotted.
#> Warning: different could not be fit on page. It will not be plotted.
#> Warning: women could not be fit on page. It will not be plotted.
#> Warning: years could not be fit on page. It will not be plotted.
#> Warning: earth could not be fit on page. It will not be plotted.
#> Warning: moment could not be fit on page. It will not be plotted.
#> Warning: children could not be fit on page. It will not be plotted.
#> Warning: challenges could not be fit on page. It will not be plotted.
#> Warning: demands could not be fit on page. It will not be plotted.
#> Warning: law could not be fit on page. It will not be plotted.
#> Warning: child could not be fit on page. It will not be plotted.
#> Warning: effort could not be fit on page. It will not be plotted.
#> Warning: remember could not be fit on page. It will not be plotted.
#> Warning: take could not be fit on page. It will not be plotted.
#> Warning: knowledge could not be fit on page. It will not be plotted.
#> Warning: god could not be fit on page. It will not be plotted.