Open daynefiler opened 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.
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.
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 includedependencies = TRUE
or move the packages into imports.