1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/animation-package.R
\docType{data}
\name{ObamaSpeech}
\alias{ObamaSpeech}
\title{Word counts of a speech by the US President Obama}
\format{
int [1:59] 2 45 52 53 11 48 28 15 50 29 ...
}
\source{
The full text of speech is at
\url{http://web.archive.org/web/20160306143403/http://www.baltimoresun.com/news/nation-world/bal-text1105-story.html}
}
\description{
This data recorded the number of words in each paragraph of Barack Obama's
speech in Chicago after winning the presidential election.
}
\examples{
## pattern: longer paragraph and shorter paragraph
plot(ObamaSpeech, type = "b", pch = 20, xlab = "paragraph index", ylab = "word count")
}
|