Skip to content

Instantly share code, notes, and snippets.

@rachelanddata
rachelanddata / Texas.topo.json
Last active December 21, 2016 19:32
Texas: 2 Bedroom Rent as a Percentage of Minimum Wage Income
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rachelanddata
rachelanddata / index.html
Last active December 24, 2016 19:57
Rent Affordability for Minimum Wage Earners
<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
fill: #d3d3d3;
stroke: #000000;
stroke-width: .2px;
}
div.tooltip {
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
We can't make this file beautiful and searchable because it's too large.
"fips_fixed","clinton","trump","johnson","stein","other","totalvotes","state","jurisdiction"
"01001",0.237696712449445,0.727665879149481,0.0218636127017179,0.00420454090417651,0.00856925479517879,24973,"AL","Autauga"
"01003",0.193856010082445,0.765457123352413,0.0258782754818043,0.00478916137163262,0.0100194297117051,95215,"AL","Baldwin"
"01005",0.465278441111854,0.520966663482663,0.00888336994937434,0.00171936192568536,0.00315216353042315,10469,"AL","Barbour"
"01007",0.212495747817213,0.764032203197641,0.0140605510828892,0.00192765619684772,0.00748384170540878,8819,"AL","Bibb"
"01009",0.0842582460528373,0.893348444583398,0.0132093168672815,0.00347819290292325,0.00570579959355948,25588,"AL","Blount"
"01011",0.749469214437367,0.24203821656051,0.00467091295116773,0.00212314225053079,0.00169851380042463,4710,"AL","Bullock"
"01013",0.426706367384333,0.561268896014659,0.00744388456252863,0.00148877691250573,0.00309207512597343,8732,"AL","Butler"
"01015",0.276658866789236,0.686632960053485,0.0233160621761658,0.0054
@rachelanddata
rachelanddata / county_results_clean.csv
Last active December 30, 2016 19:40
voter fraud - linear color scale
We can't make this file beautiful and searchable because it's too large.
"fips_fixed","clinton","trump","johnson","stein","other","totalvotes","state","jurisdiction"
"01001",0.237696712449445,0.727665879149481,0.0218636127017179,0.00420454090417651,0.00856925479517879,24973,"AL","Autauga"
"01003",0.193856010082445,0.765457123352413,0.0258782754818043,0.00478916137163262,0.0100194297117051,95215,"AL","Baldwin"
"01005",0.465278441111854,0.520966663482663,0.00888336994937434,0.00171936192568536,0.00315216353042315,10469,"AL","Barbour"
"01007",0.212495747817213,0.764032203197641,0.0140605510828892,0.00192765619684772,0.00748384170540878,8819,"AL","Bibb"
"01009",0.0842582460528373,0.893348444583398,0.0132093168672815,0.00347819290292325,0.00570579959355948,25588,"AL","Blount"
"01011",0.749469214437367,0.24203821656051,0.00467091295116773,0.00212314225053079,0.00169851380042463,4710,"AL","Bullock"
"01013",0.426706367384333,0.561268896014659,0.00744388456252863,0.00148877691250573,0.00309207512597343,8732,"AL","Butler"
"01015",0.276658866789236,0.686632960053485,0.0233160621761658,0.0054
@rachelanddata
rachelanddata / d3.v2.js
Created February 6, 2017 02:03
County Demographics & 2016 Vote
(function() {
function d3_class(ctor, properties) {
try {
for (var key in properties) {
Object.defineProperty(ctor.prototype, key, {
value: properties[key],
enumerable: false
});
}
} catch (e) {