capek_books: Tidy data frame of Karel Capek's 6 completed, published...

Description Usage Value Examples

Description

Returns a tidy data frame of Karel Capek's 6 completed, published novels with two columns: text, which contains the text of the novels, and book, which contains the titles of the novels as a factor in order of publication.

Usage

1

Value

A data frame with two columns: text and book

Examples

1
2
3
4
5
library(dplyr)

capek_books() %>%
     group_by(book) %>%
     summarise(total_lines = n())

simecek/capek documentation built on May 20, 2019, 2:01 p.m.