How-to-Learn-to-Code / rclass

Repository for the UNC-CH How to Learn to Code R Class
https://how-to-learn-to-code.github.io/rclass/
Other
2 stars 3 forks source link

Work on suggests/imports/depends #47

Open daynefiler opened 5 years ago

daynefiler commented 5 years ago

We need to move somethings around, or change the install directions. By default install_github will install depends and imports, but not suggests. We can change the install instructions to include dependencies = TRUE or move the packages into imports.

daynefiler commented 5 years ago

@mbergins and @aeallen You guys have a preference? We need to fix before class or people have to try installing a dozen times to get all the dependencies.

mbergins commented 5 years ago

Well, to even get the class package installed you need to have devtools. As such, is the first command you have everyone run on day 1?

install.packages('devtools')

Then proceed with installing the class package to gain access to the data sets?

I'm partial to moving everything to depends, that way all the packages needed to deal with the vignettes are available. The main downside to this is the time it will take to get them installed, particularly "tidyverse". Hopefully that class time will be filled with R introduction lecture.