Skip to content

Instantly share code, notes, and snippets.

View brunaw's full-sized avatar
💜
working on ML & bayesian stats

Bruna Wundervald brunaw

💜
working on ML & bayesian stats
View GitHub Profile
@brunaw
brunaw / chords + lyrics
Created June 8, 2020 11:46 — forked from lucacarbonelc/chords + lyrics
link chords to lyrics
library(chorrrds)
library(tidyverse)
# Chords ------------------------------------------------------------------
notes = c('A','B','C','D','E','F','G')
flats = 'b'
sharps = '#'
minor = 'm'
all_notes = c(notes,
paste0(notes, flats),