A Pen by splarty bart on CodePen.
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
state,year,cat,category | |
Colorado,2007,0,Not Available | |
Colorado,2014,2,Home Improvement | |
Georgia,2007,0,Not Available | |
Georgia,2012,16,Motorcycle | |
Minnesota,2013,2,Home Improvement | |
New Mexico,2013,1,Debt Consolidation | |
Kansas,2013,1,Debt Consolidation | |
California,2013,2,Home Improvement | |
Illinois,2013,7,Other |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://dimplejs.org/dist/dimple.v2.1.6.min.js"></script> | |
<script type="text/javascript"> | |
// Define function to draw bar chart | |
function draw_bar(data) { | |
var svg = dimple.newSvg("#chart1", '100%', '100%'); |
A Pen by splarty bart on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://dimplejs.org/dist/dimple.v2.0.0.min.js"></script> | |
<style> | |
h2 { | |
text-align: center; | |
} |