Skip to content

Instantly share code, notes, and snippets.

View IconicImagery's full-sized avatar

Lisa IconicImagery

  • Iconic Imagery
  • Wales, UK
View GitHub Profile
@ginseng666
ginseng666 / index.html
Created April 22, 2015 12:15
Polling Data Austria 2006-2015
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Polling Data Austria 2006-2015</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>Polling Data Austria, 2006-2015</h1>
<div id="teaser"><p>Newspapers publish opinion polls regularly. While single results for the so called "Sonntagsfrage" ("Who would you vote for at the moment?") fluctuate often, a time series can show some general trends - like a decline in support for SPOE and OEVP, the regain in strength of the FPOE (after almost breaking apart), the rise and fall of the BZOE after the death of its leader Joerg Haider or the limited success of new parties. Adding the margin of error shows another thing: Many times it is not possible to identify the strongest party with certainty. Since the last election in 2013 three parties are competing for the first place.</p>
@llad
llad / README.md
Created September 22, 2012 15:49
Reusable D3 column chart that supports negative values
@benjchristensen
benjchristensen / index.html
Created May 2, 2012 19:34
Simple Line Graph using SVG and d3.js
<html>
<head>
<title>Simple Line Graph using SVG and d3.js</title>
<script src="http://mbostock.github.com/d3/d3.v2.js"></script>
<style>
/* tell the SVG path to be a thin blue line without any area fill */
path {
stroke: steelblue;
stroke-width: 1;
fill: none;