BoulderCodeHub / RWDataPlyr

R package to read and manipulate data from RiverWareTM
3 stars 5 forks source link

not properly importing packages? #37

Closed rabutler closed 8 years ago

rabutler commented 8 years ago

read.rdf2 fails if chron and plyr are not already installed. getDataForAllScens fails if stringr is not already installed.

rabutler commented 8 years ago

stringr is needed by reshape2.

Installing reshape2 with install.packages automatically installs stringr, so that should work.

rabutler commented 8 years ago

read.rdf2 seems to work if plyr is not installed.

chron is imported by data.table, so as long as data.table is installed, then chron should be installed with it.

rabutler commented 8 years ago

If RWDataPlot, data.table, chron, and plyr are not installed, and RWDataPlot is installed, it installs the other packages.

The only time this must be an issue is if somehow chron, plyr, or stringr get removed manually.