Skip to contents

Identifies concerts with the highest number of song snippets played. A snippet is a short piece of song (either from another artist or from U2 themselves) played as part of a regular song in the show.

Usage

find_shows_with_most_snippets(concert_data)

Arguments

concert_data

A data frame containing concert information with columns: date, city, country, venue, snippet (logical)

Value

A data frame sorted by number of snippets (descending) and date (descending), containing columns: date, city, country, venue, and number of snippets played

Examples

if (FALSE) { # \dontrun{
shows_with_snippets <- find_shows_with_most_snippets(concert_data)
head(shows_with_snippets)
} # }