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
| function setup() { | |
| createCanvas(400, 400); | |
| } | |
| function draw() { | |
| background(220); | |
| // orange circle | |
| fill('orange'); | |
| circle(50,100,40); | |
| // text for rintu |
| library(R6) | |
| library(animation) | |
| Walker2 <- R6Class( | |
| classname = 'Walker2', | |
| public = list( | |
| x = NULL, | |
| y = NULL, | |
| col = NULL, | |
| cex = NULL, | |
| initialize = function( |
| #!/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 |