Skip to content

Instantly share code, notes, and snippets.

View alysonla's full-sized avatar
back in black

Alyson La alysonla

back in black
View GitHub Profile
@timwaterhouse
timwaterhouse / animated_cv.R
Last active January 29, 2020 08:58
gganimate CV
library(ggplot2)
library(tidyr)
library(dplyr)
library(maps)
library(gganimate)
WorldData <- map_data('world')
#WorldData %>% filter(region != "Antarctica") -> WorldData
WorldData <- fortify(WorldData)
@alizauf
alizauf / README.md
Last active March 28, 2018 06:16
Data Storytelling with Coördinator
@arfon
arfon / big_query_examples.md
Last active September 19, 2022 13:00
BigQuery Examples for blog post

How many times shouldn't it happen...

-- https://news.ycombinator.com/item?id=11396045

SELECT count(*)
FROM (SELECT id, repo_name, path
        FROM [bigquery-public-data:github_repos.sample_files]
 ) AS F
@susielu
susielu / README.md
Created March 13, 2014 10:59
Gephi + d3.js. Fixed network, dynamic labels.

This example creates a fixed network graph with dynamic labels using d3.js. The network layout and placement of the nodes and edges was calculated in Gephi and then exported as the graph.json file.

This was inspired from these gists by Mike Bostock: Force-Directed Graph, Multi-Foci Force Layout

@anubhavsinha
anubhavsinha / excel2mysql.py
Created September 29, 2012 00:29
simple excel to mysql in python
# following Python packages needs to be installed
# xlrd, xlsxrd, unidecode, MySQLdb
import xlrd
import xlsxrd
import MySQLdb as mdb
import re
import unidecode