austen_books | R Documentation |
Returns a tidy data frame of Jane Austen's 6 completed, published novels with
two columns: text
, which contains the text of the novels divided into
elements of up to about 70 characters each, and book
, which contains the titles of
the novels as a factor in order of publication.
austen_books()
Users should be aware that there are some differences in usage between the novels as made available by Project Gutenberg. For example, "anything" vs. "any thing", "Mr" vs. "Mr.", and using underscores vs. all caps to indicate italics/emphasis.
A data frame with two columns: text
and book
library(dplyr) austen_books() %>% group_by(book) %>% summarise(total_lines = n())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.