Skip to content

Instantly share code, notes, and snippets.

View aaronkyle's full-sized avatar

Aaron Kyle Dennis aaronkyle

View GitHub Profile
@aaronkyle
aaronkyle / README.md
Created March 31, 2018 20:52 — forked from nnattawat/README.md
A reusable d3 donut chart
@aaronkyle
aaronkyle / .block
Created March 31, 2018 21:01 — forked from mbostock/.block
Bullet Charts
license: gpl-3.0
@aaronkyle
aaronkyle / index.html
Created April 13, 2018 11:47 — forked from zanarmstrong/index.html
slider: days of the year
<!-- Bostock's slider brush: http://bl.ocks.org/mbostock/6452972-->
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="slider.css">
</head>
<body>
<p>Adapted from Bostock's <a href="http://bl.ocks.org/mbostock/6452972">slider example</a></p>
<script src="http://d3js.org/d3.v3.min.js"></script>
@aaronkyle
aaronkyle / .block
Created April 13, 2018 11:58 — forked from officeofjane/.block
Date slider - filtering data
license: mit
@aaronkyle
aaronkyle / d3.slider.css
Created April 13, 2018 11:59 — forked from cmdoptesc/d3.slider.css
D3: Map Timeline
.d3-slider {
position: relative;
font-family: Verdana,Arial,sans-serif;
font-size: 1.1em;
border: 1px solid #aaaaaa;
z-index: 2;
}
.d3-slider-horizontal {
height: .8em;
@aaronkyle
aaronkyle / d3.slider.css
Created April 13, 2018 11:59 — forked from cmdoptesc/d3.slider.css
D3: Map Timeline
.d3-slider {
position: relative;
font-family: Verdana,Arial,sans-serif;
font-size: 1.1em;
border: 1px solid #aaaaaa;
z-index: 2;
}
.d3-slider-horizontal {
height: .8em;
@aaronkyle
aaronkyle / .gitignore
Created April 15, 2018 13:48 — forked from guykr/.gitignore
d3 grouping and filtering
.idea/
@aaronkyle
aaronkyle / README.md
Created April 15, 2018 14:54 — forked from jeinarsson/LICENSE
pathSankey - Random data

pathSankey example - Random data

Example of visualizing paths as flows through layers of nodes. The figure is discussed in detail in a blog post.

A smaller and simpler example of the re-usable chart is a neighbouring gist.

@aaronkyle
aaronkyle / tweet_dumper.py
Created April 28, 2018 11:37 — forked from yanofsky/LICENSE
A script to download all of a user's tweets into a csv
#!/usr/bin/env python
# encoding: utf-8
import tweepy #https://github.com/tweepy/tweepy
import csv
#Twitter API credentials
consumer_key = ""
consumer_secret = ""
access_key = ""
@aaronkyle
aaronkyle / .block
Created May 7, 2018 19:45 — forked from epmoyer/.block
Arc Diagram
license: gpl-3.0