Skip to content

Instantly share code, notes, and snippets.

View jalapic's full-sized avatar

James Curley jalapic

View GitHub Profile
@jalapic
jalapic / lifeExp.csv
Created February 7, 2018 20:13
Life Expectancy in 2007
country lifeExp
Afghanistan 43.828
Albania 76.423
Algeria 72.301
Angola 42.731
Argentina 75.32
Australia 81.235
Austria 79.829
Bahrain 75.635
Bangladesh 64.062
@jalapic
jalapic / README.md
Created February 27, 2016 18:47
Small multiple bar charts with tooltips
### Earnings Dumbbell Chart
library(ggplot2)
library(tidyr)
library(dplyr)
library(scales)
schoolearnings <- read.csv("schoolearnings.csv", stringsAsFactors=FALSE)
df <- schoolearnings %>% gather(gender,value,2:3)
@jalapic
jalapic / gist:bb5223a74c95a1e2478c607cf19c6773
Created May 21, 2017 18:44
6 goals in consecutive away games
library(tidyverse)
library(engsoccerdata)
england %>%
filter(tier==1) %>%
homeaway() %>%
group_by(team) %>%
arrange(Date) %>%
filter(venue=="away") %>%
mutate(gameno = row_number())%>%
@jalapic
jalapic / compete_extra.R
Last active May 18, 2017 15:43
Functions for analyzing mouse hierarchy data
expandrows <- function(df){
library(splitstackshape)
library(data.table)
temp <- cSplit(cSplit(cbind(id = 1:nrow(df), df),
"Actor", ",", "long"),
"Recipient", ",", "long")
@jalapic
jalapic / .block
Last active April 14, 2017 04:12
Stretched Chord Diagram - From educations to occupations
license: mit
### Comparing Arsenal Points per N games over time
library(engsoccerdata)
library(tidyverse)
rollpts <- function(teamname=NULL, N=10){
rbind(england,england_current()) %>%
homeaway() %>%
filter(team==teamname) %>%
mutate(pts = ifelse(gf>ga, 3, ifelse(gf<ga, 0, 1)),
@jalapic
jalapic / .block
Last active April 11, 2017 03:40
Find geodesic distances
license: mit
@jalapic
jalapic / README.md
Last active April 7, 2017 20:25
network
@jalapic
jalapic / mousedata.csv
Created February 22, 2017 17:59
Example Mouse Data
Timestamp Actor Behavior Recipient Location Observer Notes
10/14/2014 11:57:16 Start Start Start Start CW NA
10/14/2014 12:03:10 6 Mounting 10 NB4 CW NA
10/14/2014 12:04:16 6 Fighting 5 NB5 CW NA
10/14/2014 12:19:27 3 Fighting 4 ML CW NA
10/14/2014 12:28:05 4 Subordinate 10 LL CW NA
10/14/2014 12:30:49 4 Fighting 2 NB1 CW NA
10/14/2014 12:34:39 4 Fighting 2 NB5 CW NA
10/14/2014 12:40:36 4 Subordinate 1 NB5 CW NA
10/14/2014 12:44:08 4 Chasing 11 LL, LR CW NA