Fugazi Live Series choice data in long format with related discography data
Source:R/Repeatr2.R
Repeatr2.Rd
Song data from the Fugazi discography pages on Wikipedia. The variables attributing lead vocals are simplifications in some cases where lead vocals were shared. The variables song_number, first_song and last_song were defined after data cleaning, so intros, outros, sound checks, interludes and one-offs are not included.
Format
dataframe with one row for each show, each song performed and each song available in all the Fugazi Live Series shows with data.
- case
This is a numerical id with unique values for each combination of gid and song_number
- gid
gig id. This is a concatenation of city, country, and date
- date
Show date
- year
Year
- launchdate
The date on which the song was first performed according to the data
- yearsold
The difference between the date of the show and the launchdate of the song, measured in years
- song_number
The number of the song in the sequence of songs that were performed as part of that show
- alt
alt is the songid variable renamed
- song
The name of the song
- choice
1 if the song was performed at that point in the show, 0 otherwise
- played
1 if the song was performed at or before that point in the show, 0 otherwise
- available_rl
Repertoire-level availability: 1 if the song was available in the repertoire for this show, 0 otherwise
- available_gl
Gig-level availability: 1 if the song was available in the repertoire and was available to be played at this point in this show, 0 otherwise
- first_song
Identifies the first song of the set
- last_song
Identifies the last song of the set
- releaseid
numeric id in ascending chronological order
- release
name of album or EP
- track_number
The track number for the song on the release
- instrumental
Indicates whether or not the piece is an instrumental
- vocals_picciotto
indicates whether or not Guy Picciotto sang lead vocals on this track
- vocals_mackaye
indicates whether or not Ian Mackaye sang lead vocals on this track
- vocals_lally
indicates whether or not Joe Lally sang lead vocals on this track
- duration_seconds
The duration of the song in seconds
- first_song_instrumental
1 if first song of the show and instrumental, 0 otherwise
Source
https://www.dischord.com/fugazi_live_series
https://web.archive.org/web/20201112000517/http://en.wikipedia.org/wiki/Fugazi_discography
Examples
Repeatr2
#> # A tibble: 879,038 × 24
#> case gid date year launchdate yearsold song_number alt song
#> <int> <chr> <date> <dbl> <date> <dbl> <dbl> <dbl> <chr>
#> 1 1 washingto… 1987-09-03 1987 1987-09-03 0 1 36 furn…
#> 2 1 washingto… 1987-09-03 1987 1987-09-03 0 1 43 in d…
#> 3 1 washingto… 1987-09-03 1987 1987-09-03 0 1 45 joe …
#> 4 1 washingto… 1987-09-03 1987 1987-09-03 0 1 55 merc…
#> 5 1 washingto… 1987-09-03 1987 1987-09-03 0 1 78 song…
#> 6 1 washingto… 1987-09-03 1987 1987-09-03 0 1 87 the …
#> 7 1 washingto… 1987-09-03 1987 1987-09-03 0 1 88 turn…
#> 8 1 washingto… 1987-09-03 1987 1987-09-03 0 1 92 wait…
#> 9 3 washingto… 1987-09-03 1987 1987-09-03 0 3 36 furn…
#> 10 3 washingto… 1987-09-03 1987 1987-09-03 0 3 43 in d…
#> # ℹ 879,028 more rows
#> # ℹ 15 more variables: choice <dbl>, played <dbl>, available_rl <dbl>,
#> # available_gl <dbl>, first_song <dbl>, last_song <dbl>, releaseid <int>,
#> # release <chr>, track_number <int>, instrumental <int>,
#> # vocals_picciotto <int>, vocals_mackaye <int>, vocals_lally <int>,
#> # duration_seconds <int>, first_song_instrumental <dbl>