lp_songs: Tidy data frame of LP's 5 completed, published albums

Description Usage Value Examples

View source: R/songs.R

Description

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.

Usage

1

Value

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

Examples

1
2
3
4
5
library(dplyr)

lp_songs() %>%
   group_by(album) %>%
   summarise(number_of_songs = n())

pachamaltese/lp documentation built on March 3, 2020, 12:17 a.m.