ezgraphs / ggguitar

Guitar Tablature and
Other
18 stars 1 forks source link

feature request: chords for left-handed #1

Closed ginolhac closed 7 years ago

ginolhac commented 7 years ago

Hi,

great package! Neat idea. Would be great to reverse the strings so one can generate chords for left-handed guitars. For example C is:

0-3-2-0-1-0

could be left-oriented

0-1-0-2-3-0

Cheers

ezgraphs commented 7 years ago

Possible using:

G_M <- c(3, 2, 0, 0, 0, 3)
ggguitar::tablature('G Major', rev(G_M), x_labels = c(1,2,3,4,5,6))

Will update the vignette to include an example.

ginolhac commented 7 years ago

thanks a lot!