data-edu / dataedu

An R package associated with the Data Science in Education Using R book
https://data-edu.github.io/dataedu/
Creative Commons Attribution 4.0 International
74 stars 12 forks source link

Installing from GitHub throws an error because `tidyverse::select` is missing #26

Closed restrellado closed 4 years ago

restrellado commented 4 years ago

Used devtools::install_github("data-edu/dataedu") and got this error:

Error in select(s12_course_data, ) : could not find function "select"
Error: unable to load R code in package ‘dataedu’
Execution halted

I'm guessing library(tidyverse) needs to appear in a script somewhere, but not sure where.

jrosen48 commented 4 years ago

can you try this again using the latest version of the package? I think(/hope!) this and #25 are resolved in that PR. I remember seeing these errors when building.

ivelasq commented 4 years ago

I often get errors with select() - maybe change to dplyr::select()?

On Thu, Jan 2, 2020 at 2:09 PM Joshua Rosenberg notifications@github.com wrote:

can you try this again using the latest version of the package? I think(/hope!) this and #25 https://github.com/data-edu/dataedu/issues/25 are resolved in that PR. I remember seeing these errors when building.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/data-edu/dataedu/issues/26?email_source=notifications&email_token=AC5LK6GEJL6UJJJTQWVALDDQ3ZCZPA5CNFSM4KCGC3NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEH7ILZQ#issuecomment-570328550, or unsubscribe https://github.com/notifications/unsubscribe-auth/AC5LK6EOV5TJBLYCH5I7RDDQ3ZCZPANCNFSM4KCGC3NA .

jrosen48 commented 4 years ago

just pushed a change to do this

restrellado commented 4 years ago

Awesome it works now! Thank you