Skip to contents

Identifies the most frequently played opening song for each year.

Usage

find_most_played_opening_song_by_year(concert_data)

Arguments

concert_data

A data frame containing concert information with columns: date, song_title, song_position, and snippet

Value

A data frame sorted by year (ascending), containing columns: year, song_title, and times_played (number of times the song was played as opener that year)

Examples

if (FALSE) { # \dontrun{
opening_timeline <- find_most_played_opening_song_by_year(concert_data)
print(opening_timeline, n = nrow(opening_timeline))
} # }