Returns a tidy data frame of LP's 5 completed, published albums with three columns: album which contains the titles of the albums as a factor in order of publication, song which contains the titles of the songs as factor in order of playing considering repetition, and lyrics, which contains the lyrics of the songs.

lp_songs()

Value

A data frame with three columns: album, song and lyrics

Examples

library(dplyr)
#> #> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats': #> #> filter, lag
#> The following objects are masked from 'package:base': #> #> intersect, setdiff, setequal, union
lp_songs() %>% group_by(album) %>% summarise(number_of_songs = n())
#> # A tibble: 5 x 2 #> album number_of_songs #> <fct> <int> #> 1 Heart-Shaped Scar 11 #> 2 Suburban Sprawl and Alcohol 11 #> 3 Forever For Now 24 #> 4 Lost On You 13 #> 5 Heart to Mouth 13