Skip to content

Instantly share code, notes, and snippets.

View adilapapaya's full-sized avatar

adilapapaya

View GitHub Profile
@adilapapaya
adilapapaya / examples.R
Last active August 29, 2015 14:19 — forked from skranz/s_dplyr
# Examples
library(dplyr)
source("s_dplyr.R");
# Original usage of dplyr
mtcars %>%
filter(gear == 3,cyl == 8) %>%
select(mpg, cyl, hp:vs)
# Select user specified cols.
@adilapapaya
adilapapaya / README.md
Last active August 29, 2015 14:01 — forked from mbostock/.block
Wilson's Algorithm (Forked from mbostock)