git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| #!/bin/sh | |
| # Convert all arguments (assumed SVG) to a TIFF acceptable to PLOS | |
| # Requires Inkscape and ImageMagick 6.8 (doesn't work with 6.6.9) | |
| for i in $@; do | |
| BN=$(basename $i .svg) | |
| inkscape --without-gui --export-png="$BN.png" --export-dpi 300 $i | |
| convert -compress LZW -alpha remove $BN.png $BN.tiff | |
| mogrify -alpha off $BN.tiff | 
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| require(HiveR) | |
| require(plyr) | |
| require(colorspace) | |
| require(classInt) | |
| d = ggplot2::diamonds | |
| d = d[,c(1:4,7)] | |
| head(d); dim(d) | |
| # separate carat-size data into equal interval groups |