Skip to content

Instantly share code, notes, and snippets.

View Mbrownshoes's full-sized avatar

Mathew Brown Mbrownshoes

View GitHub Profile
@Mbrownshoes
Mbrownshoes / .block
Last active August 24, 2018 15:59
Radial Stacked Bar
license: gpl-3.0
height: 960
@Mbrownshoes
Mbrownshoes / .block
Last active August 22, 2018 21:55
Nutrients
license: gpl-3.0
height: 960
@Mbrownshoes
Mbrownshoes / .block
Created August 22, 2018 21:27
Grouped Radial Bar Chart
license: mit
// var QueryString = function() {
// // This function is anonymous, is executed immediately and
// // the return value is assigned to QueryString!
// var query_string = {};
// var query = window.location.search.substring(1);
// var vars = query.split("&");
// for (var i = 0; i < vars.length; i++) {
// var pair = vars[i].split("=");
<!DOCTYPE html>
<svg width="960" height="500"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
var svg = d3.select("svg"),
margin = {top: 20, right: 20, bottom: 30, left: 50},
width = +svg.attr("width") - margin.left - margin.right,
height = +svg.attr("height") - margin.top - margin.bottom,
g = svg.append("g").attr("transform", "translate(" + margin.left + "," + margin.top + ")");
gistup
We can make this file beautiful and searchable if this error is corrected: It looks like row 10 should actually have 7 columns, instead of 4. in line 9.
Regional_District,Year,Total_Disposed_T,Population,Disposal_Rate_kg,swmPlan,wComposition
Alberni-Clayoquot,1990,16642,30257,550,http://www.acrd.bc.ca/cms.asp?wpID=210,http://www.acrd.bc.ca/cms.asp?wpID=210
Alberni-Clayoquot,1991,NA,NA,NA,http://www.acrd.bc.ca/cms.asp?wpID=210,http://www.acrd.bc.ca/cms.asp?wpID=210
Alberni-Clayoquot,1992,NA,NA,NA,http://www.acrd.bc.ca/cms.asp?wpID=210,http://www.acrd.bc.ca/cms.asp?wpID=210
Alberni-Clayoquot,1993,NA,NA,NA,http://www.acrd.bc.ca/cms.asp?wpID=210,http://www.acrd.bc.ca/cms.asp?wpID=210
Alberni-Clayoquot,1994,NA,NA,NA,http://www.acrd.bc.ca/cms.asp?wpID=210,http://www.acrd.bc.ca/cms.asp?wpID=210
Alberni-Clayoquot,1995,NA,NA,NA,http://www.acrd.bc.ca/cms.asp?wpID=210,http://www.acrd.bc.ca/cms.asp?wpID=210
Alberni-Clayoquot,1996,14101,30000,470,http://www.acrd.bc.ca/cms.asp?wpID=210,http://www.acrd.bc.ca/cms.asp?wpID=210
Alberni-Clayoquot,1997,15249,28824,529,http://www.acrd.bc.ca/cms.asp?wpID=210,http://www.acrd.bc.ca/cms.asp?wpID=210
Alberni-Clayoquot,1998,13862,26914
<!DOCTYPE html>
<meta charset="utf-8">
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.16/d3.min.js"></script>
<script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.4.0.js"></script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- Latest compiled and minified CSS -->
@Mbrownshoes
Mbrownshoes / index.html
Created May 17, 2018 23:06
Fish_wholesale_bc
<!DOCTYPE html>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<style>
.axis--x path {
display: none;
}
.tooltip {