briandk / granovaGG

Bob Pruzek and Jim Helmreich's implementation of Elemental Graphics for Analysis of Variance
Other
15 stars 4 forks source link

granovaGG v 1.2 #152

Closed briandk closed 12 years ago

briandk commented 12 years ago

This is really a minor update. It currently passes all R CMD checks, yielding only a NOTE about variable bindings. We've been ignoring that note since v 1.0.

The ggplot2 folks plan to submit their release candidate on August 27, 2012.

Lastly, there are what look like many line changes, but in fact most of them are just whitespace changes due to a line-ending preference I changed in Sublime Text 2.

If you have time before then, can you at least verify that the package runs and passes checks on your sytem? See instructions below.

Minor changes

Unfortunately, the way I've been doing it is by first removing my local copies of the dependent packages:

Also, make sure you have R 2.15.1 and the devtools library installed and run this:

# Wiping out old packages
detach(package:gtable)
detach(package:scales)
detach(package:ggplot2)
detach(package:gridExtra)

remove.packages(c("gtable", "scales", "ggplot2", "gridExtra"))

# Installing the freshest dependencies
install_github("gtable", branch = "gtable-0.1.1-rc")
install_github("scales", branch = "scales-0.2.2-rc")
install_github("ggplot2", branch = "ggplot2-0.9.2-rc")
install.packages("gridExtra", dependencies=TRUE )

# Checking the package
library(devtools)
check("granovaGG") # replace with your path to the granovaGG directory
briandk commented 12 years ago

To view the diff while ignoring whitespace changes, which you might find much simpler, you can just append ?w=1 to the URL of the diff:

https://github.com/briandk/granovaGG/pull/152/files
https://github.com/briandk/granovaGG/pull/152/files?w=1 <!--ignore whitespace changes-->