create_net: create_net

Description Usage Arguments Value Examples

View source: R/create_net.R

Description

Match music lyrics with the corresponding chords.

Usage

1
create_net(chords_dat)

Arguments

chords_dat

data frame. A data frame as produced by the 'create_dat()' function with chords in the first column and lyrics in the second column.

Value

An object of type 'tibble' with the song chords and lyrics is retuned. Each chord is linked to the words that are sung when that chord is played.

Examples

1
2
3
4
5
6
{

  chords_dat <- create_dat("The Weeknd", "Acquainted")
  create_net(chords_dat)

}

chorrrds documentation built on July 2, 2020, 2:24 a.m.