A simple line chart of presidential popularity.
<!DOCTYPE html>
<head>
<title>Line Chart</title>
</head>
<meta charset="utf-8">
<style>
svg{
background-color: #eee;
margin-top: 20px;
}
path.domain {
fill: none;
}
g.tick > line {
stroke: white;
stroke-width: 1px;
}
g.tick > text {
text-anchor: middle;
fill: #606060;
}
</style>
<body>
<div id="viz"></div>
<div>Data From: <a href="//www.presidency.ucsb.edu/data/popularity.php">//www.presidency.ucsb.edu/data/popularity.php</a></div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.16/d3.min.js" charset="utf-8" type="text/javascript"></script>
<script src="//d3js.org/queue.v1.min.js" type="text/JavaScript"></script>
<script>
var width = 500,
height = 500;
xScale = d3.scale.linear().domain([0,10]).range([40,760]);
yScale = d3.scale.linear().domain([0,10]).range([60,830]);
svg = d3.select('#viz')
.append('svg')
.attr({width: 1500, height: height});
var chartPoints = 100;
queue()
.defer(d3.csv, "bush_popularity.csv")
.defer(d3.csv, "obama_popularity.csv")
.await(function(error, file1, file2) { createChart(file1, file2,"undecided", d3.select("svg").append("g")); });
function createChart(bush, obama, type, linechart) {
bush.forEach(function (d) {
d.datestamp = new Date(d.start);
})
obama.forEach(function (d) {
d.datestamp = new Date(d.start);
})
var bushExtent = d3.extent(bush.map(function (d) {return d.datestamp}))
var obamaExtent = d3.extent(obama.map(function (d) {return d.datestamp}))
var fullExtent = [Math.min(bushExtent[0], obamaExtent[0]),Math.max(bushExtent[1], obamaExtent[1])]
var xScale = d3.time.scale().domain(fullExtent).range([0,500])
var chartExtent = [0,90];
var yScale = d3.scale.linear().domain(chartExtent).range([480,20]);
var axis = d3.svg.axis().scale(yScale)
.orient("right")
.ticks(8)
.tickSize(-480)
.tickSubdivide(true);
var line = d3.svg.line()
.x(function(d) {return xScale(new Date(d.datestamp))})
.y(function(d) {return yScale(d["approval"])})
.interpolate("linear");
linechart.append("g").attr("transform", "translate(480,0)").call(axis);
linechart.append("path")
.style("fill", "none")
.style("stroke-width", "2px")
.style("stroke", "darkred")
.attr("class", "line")
.attr("d", line(bush))
linechart.append("path")
.style("fill", "none")
.style("stroke-width", "2px")
.style("stroke", "darkblue")
.attr("class", "line")
.attr("d", line(obama))
}
</script>
start,end,approval,disapproval,undecided
01/09/2009,01/11/2009,34,61,5
12/12/2008,12/14/2008,29,67,4
12/04/2008,12/07/2008,32,61,7
11/13/2008,11/16/2008,29,66,4
11/07/2008,11/09/2008,28,68,5
10/31/2008,11/02/2008,25,70,5
10/23/2008,10/26/2008,31,66,3
10/10/2008,10/12/2008,25,71,4
10/03/2008,10/05/2008,25,70,6
09/26/2008,09/27/2008,27,69,4
09/05/2008,09/07/2008,33,64,3
08/21/2008,08/23/2008,29,66,5
08/07/2008,08/10/2008,33,61,6
07/25/2008,07/27/2008,32,65,3
07/10/2008,07/13/2008,31,61,8
06/15/2008,06/19/2008,28,68,4
06/09/2008,06/12/2008,30,64,6
05/30/2008,06/01/2008,28,68,4
05/01/2008,05/03/2008,28,67,5
04/18/2008,04/20/2008,28,69,4
04/06/2008,04/09/2008,28,67,5
03/14/2008,03/16/2008,32,64,4
03/06/2008,03/09/2008,32,64,4
02/21/2008,02/24/2008,32,62,5
02/11/2008,02/14/2008,31,65,4
02/08/2008,02/10/2008,33,61,5
01/30/2008,02/02/2008,34,61,5
01/10/2008,01/13/2008,34,60,6
01/04/2008,01/06/2008,32,64,4
12/14/2007,12/16/2007,32,65,3
12/06/2007,12/09/2007,37,57,5
11/30/2007,12/02/2007,34,62,4
11/11/2007,11/14/2007,32,61,7
11/02/2007,11/04/2007,31,64,5
10/12/2007,10/14/2007,32,64,3
10/04/2007,10/07/2007,32,64,4
09/14/2007,09/16/2007,36,62,2
09/07/2007,09/08/2007,33,62,5
08/13/2007,08/16/2007,32,63,5
08/03/2007,08/05/2007,34,62,4
07/12/2007,07/15/2007,31,63,6
07/06/2007,07/08/2007,29,66,5
06/11/2007,06/14/2007,32,65,3
06/01/2007,06/03/2007,32,62,6
05/10/2007,05/13/2007,33,62,5
05/04/2007,05/06/2007,34,63,3
04/13/2007,04/15/2007,36,60,4
04/02/2007,04/05/2007,38,58,4
03/23/2007,03/25/2007,34,62,4
03/11/2007,03/14/2007,35,61,4
03/02/2007,03/04/2007,33,63,4
02/09/2007,02/11/2007,37,59,3
02/01/2007,02/04/2007,32,65,4
01/12/2007,01/14/2007,34,63,4
01/05/2007,01/07/2007,37,59,4
12/11/2006,12/14/2006,35,61,4
12/08/2006,12/10/2006,38,59,4
11/09/2006,11/12/2006,33,62,4
11/02/2006,11/05/2006,38,56,6
10/20/2006,10/22/2006,37,58,4
10/09/2006,10/12/2006,37,57,6
10/06/2006,10/08/2006,37,59,4
09/15/2006,09/17/2006,44,51,5
09/07/2006,09/10/2006,39,56,5
08/18/2006,08/20/2006,42,54,4
08/07/2006,08/10/2006,37,59,4
07/28/2006,07/30/2006,40,56,4
07/21/2006,07/23/2006,37,59,4
07/06/2006,07/09/2006,40,55,5
06/23/2006,06/25/2006,37,60,3
06/09/2006,06/11/2006,38,56,6
06/01/2006,06/04/2006,36,57,6
05/08/2006,05/11/2006,33,61,6
05/05/2006,05/07/2006,31,65,5
04/28/2006,04/30/2006,34,63,3
04/10/2006,04/13/2006,36,59,5
04/07/2006,04/09/2006,37,60,3
03/13/2006,03/16/2006,37,59,5
03/10/2006,03/12/2006,36,60,4
02/28/2006,03/01/2006,38,60,2
02/09/2006,02/12/2006,39,56,4
02/06/2006,02/09/2006,42,55,4
01/20/2006,01/22/2006,43,54,4
01/09/2006,01/12/2006,43,53,4
01/06/2006,01/08/2006,43,54,3
12/19/2005,12/22/2005,43,53,4
12/16/2005,12/18/2005,41,56,3
12/09/2005,12/11/2005,42,55,3
12/05/2005,12/08/2005,43,51,4
11/17/2005,11/20/2005,38,56,4
11/11/2005,11/13/2005,36,60,3
11/07/2005,11/10/2005,40,54,4
10/28/2005,10/30/2005,40,56,2
10/24/2005,10/27/2005,40,55,3
10/21/2005,10/23/2005,41,54,3
10/13/2005,10/16/2005,39,57,3
09/26/2005,09/28/2005,45,50,4
09/16/2005,09/18/2005,39,57,2
09/12/2005,09/15/2005,44,52,3
09/08/2005,09/11/2005,46,50,3
08/28/2005,08/30/2005,45,52,2
08/22/2005,08/25/2005,39,55,4
08/08/2005,08/11/2005,45,50,4
07/22/2005,07/24/2005,48,47,3
07/07/2005,07/10/2005,48,48,3
06/06/2005,06/26/2005,41,52,6
06/16/2005,06/19/2005,47,50,2
06/06/2005,06/08/2005,47,48,4
05/23/2005,05/26/2005,47,47,4
05/20/2005,05/22/2005,45,50,3
05/02/2005,05/05/2005,50,45,4
04/29/2005,05/01/2005,47,49,3
04/18/2005,04/21/2005,47,48,3
04/04/2005,04/07/2005,50,44,4
04/01/2005,04/02/2005,47,48,3
03/18/2005,03/20/2005,51,44,4
03/07/2005,03/10/2005,52,43,4
02/25/2005,02/27/2005,52,45,2
02/21/2005,02/24/2005,51,45,3
02/07/2005,02/10/2005,48,47,3
02/04/2005,02/06/2005,57,39,3
01/07/2005,01/09/2005,51,44,3
01/03/2005,01/05/2005,51,44,3
12/17/2004,12/19/2004,49,46,4
12/05/2004,12/08/2004,52,44,3
11/07/2004,11/10/2004,53,44,2
10/29/2004,10/31/2004,47,47,4
10/22/2004,10/24/2004,50,46,3
10/14/2004,10/16/2004,51,46,2
10/11/2004,10/14/2004,48,48,2
10/09/2004,10/10/2004,47,48,3
10/01/2004,10/03/2004,49,48,1
09/24/2004,09/26/2004,53,44,1
09/13/2004,09/15/2004,51,45,3
09/03/2004,09/05/2004,51,46,2
08/23/2004,08/25/2004,49,46,3
08/09/2004,08/11/2004,51,45,3
07/30/2004,07/31/2004,46,49,3
07/19/2004,07/21/2004,48,47,3
07/08/2004,07/11/2004,47,49,3
06/09/2004,06/29/2004,52,44,2
06/21/2004,06/23/2004,47,48,3
06/03/2004,06/06/2004,48,49,2
05/21/2004,05/23/2004,46,48,4
05/07/2004,05/09/2004,46,50,2
05/02/2004,05/04/2004,48,48,3
04/16/2004,04/18/2004,51,44,3
04/05/2004,04/08/2004,51,45,3
03/26/2004,03/28/2004,54,43,2
03/08/2004,03/11/2004,51,45,2
03/05/2004,03/07/2004,50,46,2
02/16/2004,02/17/2004,52,45,2
02/09/2004,02/12/2004,51,45,2
02/06/2004,02/08/2004,51,44,4
01/29/2004,02/01/2004,51,46,2
01/12/2004,01/15/2004,53,43,2
01/09/2004,01/11/2004,58,37,3
01/02/2004,01/05/2004,60,35,4
12/15/2003,12/16/2003,62,34,2
12/11/2003,12/14/2003,55,40,3
11/14/2003,11/16/2003,50,46,3
11/03/2003,11/05/2003,53,43,3
10/24/2003,10/27/2003,62,34,3
10/24/2003,10/26/2003,53,42,4
10/10/2003,10/12/2003,55,40,3
10/06/2003,10/08/2003,54,41,3
09/19/2003,09/21/2003,49,47,3
09/08/2003,09/10/2003,52,42,4
08/25/2003,08/26/2003,59,37,3
08/04/2003,08/06/2003,60,35,3
07/18/2003,07/20/2003,59,37,3
07/07/2003,07/09/2003,62,33,4
06/27/2003,06/29/2003,61,35,3
06/12/2003,06/15/2003,56,36,6
06/09/2003,06/10/2003,61,34,3
05/30/2003,06/01/2003,63,32,4
05/19/2003,05/21/2003,65,30,3
05/05/2003,05/07/2003,69,28,2
04/22/2003,04/23/2003,70,26,3
04/14/2003,04/16/2003,70,24,4
04/07/2003,04/09/2003,68,26,4
04/05/2003,04/06/2003,70,26,3
03/29/2003,03/30/2003,70,25,3
03/24/2003,03/25/2003,69,27,3
03/22/2003,03/23/2003,70,25,3
03/14/2003,03/15/2003,58,37,4
03/03/2003,03/05/2003,57,37,5
02/24/2003,02/26/2003,56,37,5
02/17/2003,02/19/2003,57,37,5
02/07/2003,02/09/2003,61,33,4
02/03/2003,02/06/2003,59,34,6
01/31/2003,02/02/2003,60,35,4
01/23/2003,01/25/2003,59,35,4
01/20/2003,01/22/2003,58,35,6
01/13/2003,01/16/2003,61,33,5
01/10/2003,01/12/2003,57,37,5
01/03/2003,01/05/2003,63,31,4
12/19/2002,12/22/2002,61,32,6
12/16/2002,12/17/2002,63,32,3
12/05/2002,12/08/2002,63,29,7
11/11/2002,11/14/2002,66,25,7
11/08/2002,11/10/2002,68,26,4
10/31/2002,11/03/2002,63,29,7
10/21/2002,10/22/2002,66,28,4
10/14/2002,10/17/2002,62,30,6
10/03/2002,10/06/2002,67,27,4
09/23/2002,09/25/2002,67,26,6
09/18/2002,09/18/2002,66,29,4
09/13/2002,09/16/2002,70,25,4
09/05/2002,09/08/2002,65,30,4
09/02/2002,09/04/2002,66,28,4
08/19/2002,08/21/2002,65,27,6
07/29/2002,07/31/2002,70,23,5
07/26/2002,07/28/2002,68,25,5
07/22/2002,07/24/2002,68,24,7
07/09/2002,07/11/2002,72,21,5
07/05/2002,07/08/2002,75,18,6
06/21/2002,06/23/2002,73,20,6
06/17/2002,06/19/2002,74,19,6
06/07/2002,06/08/2002,74,18,7
06/03/2002,06/06/2002,70,23,6
05/28/2002,05/29/2002,76,16,6
05/20/2002,05/22/2002,76,17,6
05/06/2002,05/09/2002,75,19,4
04/29/2002,05/01/2002,77,19,3
04/22/2002,04/24/2002,76,16,6
04/08/2002,04/11/2002,74,19,5
04/05/2002,04/07/2002,75,19,5
03/22/2002,03/24/2002,78,17,3
03/18/2002,03/20/2002,79,15,4
03/08/2002,03/09/2002,79,14,5
03/04/2002,03/07/2002,76,18,5
03/01/2002,03/03/2002,80,14,4
02/08/2002,02/10/2002,81,13,4
02/04/2002,02/06/2002,81,14,4
01/25/2002,01/27/2002,84,13,2
01/11/2002,01/14/2002,82,12,4
12/14/2001,12/16/2001,85,10,3
12/06/2001,12/09/2001,85,10,3
11/26/2001,11/27/2001,87,8,4
11/09/2001,11/15/2001,84,11,3
11/08/2001,11/11/2001,86,9,3
11/02/2001,11/04/2001,87,8,3
10/19/2001,10/21/2001,88,9,2
10/11/2001,10/14/2001,89,8,2
10/05/2001,10/07/2001,87,9,3
09/21/2001,09/22/2001,89,6,4
09/14/2001,09/15/2001,85,9,4
09/07/2001,09/11/2001,51,39,9
08/24/2001,08/26/2001,55,35,9
08/16/2001,08/19/2001,57,33,8
08/10/2001,08/12/2001,57,35,7
08/03/2001,08/05/2001,55,34,10
07/19/2001,07/22/2001,55,33,10
07/10/2001,07/11/2001,57,34,8
06/28/2001,07/01/2001,52,34,13
06/22/2001,06/28/2001,50,42,7
06/11/2001,06/17/2001,52,34,12
06/08/2001,06/10/2001,55,35,9
05/18/2001,05/20/2001,55,35,8
05/10/2001,05/14/2001,56,31,12
05/07/2001,05/09/2001,53,32,14
04/20/2001,04/22/2001,62,29,9
04/06/2001,04/08/2001,59,29,11
03/26/2001,03/28/2001,52,29,18
03/09/2001,03/11/2001,58,28,13
03/05/2001,03/07/2001,62,21,15
02/19/2001,02/21/2001,61,21,16
02/09/2001,02/11/2001,57,24,17
02/01/2001,02/04/2001,57,25,18
start,end,approval,disapproval,undecided
12/08/1960,12/13/1960,59,28,13
12/06/1960,12/06/1960,68,31,0
11/15/1960,11/15/1960,59,25,14
10/18/1960,10/23/1960,57,31,10
09/26/1960,09/26/1960,64,25,9
09/09/1960,09/14/1960,58,28,13
08/25/1960,08/30/1960,60,28,11
08/09/1960,08/09/1960,63,24,12
07/28/1960,07/28/1960,62,26,11
07/14/1960,07/14/1960,49,33,17
06/28/1960,06/28/1960,57,26,16
06/14/1960,06/14/1960,60,23,15
05/24/1960,05/24/1960,64,21,13
04/26/1960,04/26/1960,61,21,16
03/28/1960,03/28/1960,65,22,12
03/02/1960,03/07/1960,63,22,14
02/04/1960,02/09/1960,63,21,14
01/06/1960,01/11/1960,66,17,15
12/10/1959,12/15/1959,76,15,8
12/03/1959,12/08/1959,66,18,15
11/10/1959,11/10/1959,64,20,14
10/14/1959,10/14/1959,66,19,14
09/16/1959,09/16/1959,66,19,13
07/23/1959,07/28/1959,60,26,13
06/25/1959,06/30/1959,62,23,14
05/29/1959,06/03/1959,63,20,15
04/27/1959,04/27/1959,59,24,15
03/31/1959,03/31/1959,62,22,15
03/04/1959,03/09/1959,58,25,16
02/04/1959,02/09/1959,58,25,15
01/07/1959,01/12/1959,56,27,15
12/03/1958,12/08/1958,56,32,11
11/07/1958,11/12/1958,51,29,18
10/13/1958,10/13/1958,56,26,16
09/24/1958,09/29/1958,53,27,18
09/10/1958,09/15/1958,56,29,14
08/20/1958,08/25/1958,55,26,17
07/30/1958,08/04/1958,57,26,15
07/08/1958,07/08/1958,52,32,15
05/26/1958,05/26/1958,53,31,15
05/07/1958,05/12/1958,51,32,15
04/14/1958,04/14/1958,54,30,15
03/25/1958,03/25/1958,47,35,16
03/04/1958,03/04/1958,50,32,15
02/14/1958,02/19/1958,54,32,0
01/22/1958,01/22/1958,57,27,14
12/31/1957,12/31/1957,60,29,9
11/07/1957,11/12/1957,57,27,14
10/10/1957,10/15/1957,56,26,15
09/19/1957,09/24/1957,57,27,14
08/06/1957,08/06/1957,62,19,17
07/18/1957,07/23/1957,64,22,13
06/25/1957,06/25/1957,63,22,13
06/06/1957,06/11/1957,63,22,14
05/15/1957,05/15/1957,61,22,14
04/25/1957,04/30/1957,62,22,14
04/06/1957,04/11/1957,66,20,12
03/15/1957,03/20/1957,65,19,14
02/28/1957,03/05/1957,71,17,10
02/05/1957,02/12/1957,72,15,11
01/17/1957,01/22/1957,73,13,12
12/14/1956,12/19/1956,77,11,10
11/20/1956,11/20/1956,74,14,10
08/01/1956,08/01/1956,67,19,13
07/10/1956,07/10/1956,69,20,9
06/13/1956,06/13/1956,72,18,8
05/29/1956,05/29/1956,71,18,9
05/08/1956,05/08/1956,69,16,13
03/29/1956,04/03/1956,72,17,10
03/06/1956,03/06/1956,72,17,10
02/14/1956,02/14/1956,74,15,10
01/24/1956,01/24/1956,76,13,8
01/04/1956,01/04/1956,76,11,11
12/06/1955,12/06/1955,74,12,11
11/17/1955,11/22/1955,77,13,9
09/13/1955,09/13/1955,70,16,12
08/23/1955,08/23/1955,70,15,13
08/02/1955,08/02/1955,75,11,13
07/12/1955,07/12/1955,72,17,9
06/22/1955,06/22/1955,67,15,17
06/03/1955,06/08/1955,69,15,14
05/12/1955,05/17/1955,67,16,15
04/14/1955,04/19/1955,69,14,16
03/22/1955,03/22/1955,64,22,12
03/01/1955,03/01/1955,70,16,12
02/10/1955,02/15/1955,72,15,12
01/18/1955,01/18/1955,69,17,13
12/31/1954,01/05/1955,69,17,12
11/30/1954,11/30/1954,68,23,7
11/11/1954,11/16/1954,57,23,18
10/13/1954,10/13/1954,61,25,12
09/16/1954,09/21/1954,65,21,12
08/24/1954,08/24/1954,61,22,15
08/03/1954,08/03/1954,67,18,13
07/16/1954,07/21/1954,74,20,5
06/30/1954,06/30/1954,64,21,14
06/12/1954,06/17/1954,61,23,13
05/21/1954,05/26/1954,61,23,14
04/08/1954,04/13/1954,68,21,9
04/03/1954,04/03/1954,60,22,16
03/17/1954,03/17/1954,64,22,11
02/23/1954,02/23/1954,66,21,12
01/26/1954,01/26/1954,70,17,11
01/07/1954,01/07/1954,70,18,10
12/09/1953,12/09/1953,68,21,9
11/01/1953,11/05/1953,61,25,13
10/09/1953,10/14/1953,64,19,16
09/12/1953,09/17/1953,60,20,17
08/15/1953,08/20/1953,73,14,0
07/23/1953,07/23/1953,72,12,14
05/09/1953,05/14/1953,73,10,15
04/19/1953,04/24/1953,73,10,17
03/28/1953,04/02/1953,73,7,18
02/20/1953,02/20/1953,66,7,25
02/01/1953,02/05/1953,68,7,25
start,end,approval,disapproval,undecided
12/27/1988,12/29/1988,63,29,8
11/11/1988,11/14/1988,56,35,8
09/09/1988,09/11/1988,53,37,9
07/01/1988,07/07/1988,50,35,14
05/13/1988,05/15/1988,49,37,12
03/08/1988,03/12/1988,51,36,11
03/10/1988,03/10/1988,51,41,6
02/04/1988,02/04/1988,52,36,10
12/15/1987,12/15/1987,51,35,12
12/08/1987,12/11/1987,61,32,6
11/06/1987,11/06/1987,52,38,9
10/23/1987,10/26/1987,50,40,8
10/23/1987,10/26/1987,50,40,8
10/22/1987,10/23/1987,48,38,12
10/07/1987,10/09/1987,47,41,11
09/25/1987,10/04/1987,51,38,10
09/02/1987,09/03/1987,51,36,11
08/24/1987,09/02/1987,48,42,8
07/10/1987,07/13/1987,48,43,8
07/09/1987,07/10/1987,50,39,10
06/01/1987,06/01/1987,45,40,14
05/17/1987,05/18/1987,49,42,8
04/29/1987,04/30/1987,47,44,8
04/10/1987,04/13/1987,48,43,8
03/14/1987,03/18/1987,46,43,9
03/05/1987,03/06/1987,46,45,8
02/27/1987,02/27/1987,40,52,7
01/28/1987,01/29/1987,49,40,9
01/16/1987,01/19/1987,48,42,8
01/07/1987,01/08/1987,52,36,10
12/04/1986,12/05/1986,47,43,8
12/04/1986,12/05/1986,47,43,8
10/01/1986,10/02/1986,64,28,7
09/13/1986,09/17/1986,62,26,10
08/20/1986,08/21/1986,63,28,7
07/31/1986,07/31/1986,59,28,12
07/11/1986,07/14/1986,63,27,8
07/01/1986,07/02/1986,67,22,9
06/09/1986,06/16/1986,67,23,9
04/30/1986,05/01/1986,67,21,10
04/11/1986,04/20/1986,61,28,9
04/17/1986,04/18/1986,67,20,12
04/11/1986,04/14/1986,61,28,9
03/26/1986,03/27/1986,63,24,12
03/04/1986,03/10/1986,63,25,11
01/29/1986,01/30/1986,71,19,8
01/10/1986,01/13/1986,63,27,9
11/19/1985,11/19/1985,66,26,7
11/11/1985,11/18/1985,65,23,10
11/13/1985,11/14/1985,69,23,6
10/11/1985,10/14/1985,62,29,8
08/27/1985,08/28/1985,61,29,9
08/13/1985,08/14/1985,65,25,8
08/01/1985,08/02/1985,62,24,13
07/17/1985,07/18/1985,67,20,11
07/12/1985,07/15/1985,62,28,9
06/20/1985,06/21/1985,65,25,9
06/07/1985,06/10/1985,57,32,9
05/17/1985,05/20/1985,55,36,8
04/26/1985,04/26/1985,54,32,12
04/12/1985,04/15/1985,52,37,10
03/08/1985,03/11/1985,55,37,7
02/28/1985,03/01/1985,57,30,11
02/15/1985,02/18/1985,59,31,9
01/25/1985,01/28/1985,63,28,7
01/11/1985,01/14/1985,61,29,9
01/03/1985,01/04/1985,59,29,11
12/07/1984,12/10/1984,59,31,9
11/30/1984,12/03/1984,61,30,7
11/09/1984,11/12/1984,61,30,8
10/26/1984,10/29/1984,58,32,8
09/28/1984,10/01/1984,53,35,10
09/21/1984,09/24/1984,56,36,6
09/07/1984,09/09/1984,56,35,7
08/10/1984,08/12/1984,53,38,8
07/27/1984,07/30/1984,51,36,11
07/13/1984,07/16/1984,55,34,9
07/12/1984,07/13/1984,51,38,10
07/06/1984,07/09/1984,53,35,10
06/29/1984,07/02/1984,53,36,10
06/22/1984,06/22/1984,54,36,9
06/01/1984,06/03/1984,52,36,11
05/18/1984,05/21/1984,53,38,8
05/09/1984,05/10/1984,49,38,11
04/25/1984,04/26/1984,48,38,13
04/06/1984,04/09/1984,54,36,9
03/16/1984,03/19/1984,53,38,7
03/01/1984,03/02/1984,52,35,12
02/10/1984,02/13/1984,55,35,8
01/30/1984,02/06/1984,52,37,9
01/27/1984,01/30/1984,55,36,8
01/13/1984,01/16/1984,52,37,9
12/09/1983,12/12/1983,53,37,8
11/18/1983,11/21/1983,52,37,10
10/07/1983,10/14/1983,45,43,10
09/13/1983,09/13/1983,47,42,10
09/09/1983,09/12/1983,47,41,10
08/19/1983,08/22/1983,42,46,11
08/12/1983,08/15/1983,43,44,11
08/05/1983,08/08/1983,43,46,9
07/29/1983,08/02/1983,44,42,13
07/22/1983,07/25/1983,42,46,10
06/24/1983,06/27/1983,46,43,9
06/10/1983,06/13/1983,43,45,11
05/20/1983,05/23/1983,45,42,11
05/13/1983,05/16/1983,43,45,11
04/29/1983,05/02/1983,42,46,10
04/15/1983,04/18/1983,40,49,10
03/11/1983,03/14/1983,40,49,10
01/28/1983,01/31/1983,35,56,8
01/21/1983,01/24/1983,37,52,9
01/11/1983,01/11/1983,36,54,9
12/10/1982,12/13/1982,41,50,8
11/19/1982,11/22/1982,43,46,9
11/05/1982,11/08/1982,42,47,10
10/15/1982,10/18/1982,41,47,10
09/17/1982,09/20/1982,42,47,9
08/24/1982,08/24/1982,41,45,12
08/13/1982,08/16/1982,40,48,10
07/30/1982,08/02/1982,40,46,12
07/23/1982,07/26/1982,42,46,11
06/25/1982,06/28/1982,44,45,10
06/11/1982,06/14/1982,44,45,9
05/14/1982,05/17/1982,44,44,10
04/30/1982,05/03/1982,44,45,9
04/23/1982,04/26/1982,43,47,9
04/02/1982,04/05/1982,45,46,8
03/12/1982,03/15/1982,46,44,9
02/05/1982,02/08/1982,46,43,10
01/22/1982,01/25/1982,47,41,11
01/05/1982,01/05/1982,49,39,11
12/11/1981,12/14/1981,48,41,10
11/20/1981,11/23/1981,54,36,8
11/13/1981,11/16/1981,48,40,10
10/30/1981,11/03/1981,54,34,11
09/18/1981,09/21/1981,51,37,10
08/14/1981,08/17/1981,59,29,10
07/31/1981,08/03/1981,59,28,12
07/24/1981,07/27/1981,55,30,13
07/17/1981,07/20/1981,59,29,10
06/26/1981,06/29/1981,57,30,12
06/16/1981,06/16/1981,58,28,12
06/05/1981,06/08/1981,58,28,12
05/08/1981,05/11/1981,68,21,11
04/10/1981,04/13/1981,66,19,13
03/31/1981,03/31/1981,66,18,15
02/13/1981,02/16/1981,55,17,26
01/30/1981,02/02/1981,51,13,36