LibraryCarpentry / lc-r

Introduction to R
http://librarycarpentry.org/lc-r/
Other
14 stars 28 forks source link

Data cleaning: reformat code. line 333-334 #16

Closed libjohn closed 4 years ago

libjohn commented 4 years ago

data cleaning lesson | code @ lines 333-334

Original

booksLC <- mutate(books
                    , call_class = str_sub(callnumber, 1, 1))

Proposed

booksLC <- mutate(books, 
                  call_class = str_sub(callnumber, 1, 1))
libjohn commented 4 years ago

merged https://github.com/LibraryCarpentry/lc-r/pull/31