Skip to content

Instantly share code, notes, and snippets.

@ajzeigert
Created September 26, 2015 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajzeigert/a38204af9e258275cd8b to your computer and use it in GitHub Desktop.
Save ajzeigert/a38204af9e258275cd8b to your computer and use it in GitHub Desktop.
Cigarette taxes by state, 1970-2015
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cigarette taxes by state, 1970-2014</title>
<script type="text/javascript" src="http://d3js.org/d3.v3.js"></script>
<style type="text/css">
body {
background-color: white;
font-family: Helvetica, Arial, sans-serif;
}
h1 {
font-size: 24px;
margin: 0;
}
p {
font-size: 14px;
margin: 10px 0 0 0;
}
svg {
background-color: white;
}
path:hover {
stroke: orange;
stroke-width: 3;
}
path {
stroke: gray;
stroke-width: 1.5;
}
g.highlight path {
stroke: steelblue;
stroke-width: 2;
}
.axis path,
.axis line {
fill: none;
stroke: black;
stroke-width: 1;
shape-rendering: crispEdges;
}
.axis text {
font-family: sans-serif;
font-size: 11px;
}
</style>
</head>
<body>
<h1>Cigarette taxes by state, 1970-2014</h1>
<p>Cigarette sales tax per pack as a percentage of retail price, by U.S. state, 1970-2014 Source: <a href="https://chronicdata.cdc.gov/Policy/tax_burden_percent_over_time/99g9-3m3z?category=Policy&view_name=tax_burden_percent_over_time">Centers for Disease Control and Prevention</a>, 2015</p>
<script type="text/javascript">
// Dimensions
var w = 800;
var h = 500;
var padding = { top: 20, right: 10, bottom: 20, left: 40 }; //Top, right, bottom, left
// Date formatter
var dateFormat = d3.time.format("%Y");
// Scales
var xScale = d3.time.scale()
.range([ padding.left, w - padding.right - padding.left ]);
var yScale = d3.scale.linear()
.range([ padding.top, h - padding.bottom ]);
// Axis
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.ticks(10)
.tickFormat(function(d) {
return dateFormat(d);
});
var yAxis = d3.svg.axis()
.scale(yScale)
.orient("left")
.tickFormat(function(d) {
return d + '%';
});
// Line generator
var line = d3.svg.line()
.x(function(d) {
return xScale(dateFormat.parse(d.year));
})
.y(function(d) {
return yScale(+d.amount);
});
// New SVG
var svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
// Load the tax data
d3.csv("taxBurden.csv", function(data) {
// console.log(data);
// Restructuring stuff
var years = ["1970", "1971", "1972", "1973", "1974", "1975", "1976", "1977", "1978", "1979", "1980", "1981", "1982", "1983", "1984", "1985", "1986", "1987", "1988", "1989", "1990", "1991", "1992", "1993", "1994", "1995", "1996", "1997", "1998", "1999", "2000", "2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014"];
var dataset = [];
for (var i = 0; i < data.length; i++) {
dataset[i] = {
state: data[i].state,
tax: []
};
//Loop through all the years
for (var j = 0; j < years.length; j++) {
// If value is not empty
if (data[i][years[j]]) {
//Add a new object to the emissions data array
//for this state
dataset[i].tax.push({
year: years[j],
amount: data[i][years[j]]
});
}
}
}
//Set scale domains
xScale.domain([
d3.min(years, function(d) {
return dateFormat.parse(d);
}),
d3.max(years, function(d) {
return dateFormat.parse(d);
})
]);
yScale.domain([
d3.max(dataset, function(d) {
return d3.max(d.tax, function(d) {
return +d.amount;
});
}),
0
]);
// Groups
var groups = svg.selectAll("g")
.data(dataset)
.enter()
.append("g")
.classed("highlight", function(d) {
if (d.state == "Oregon") {
return true;
} else {
return false;
}
});
// Group tooltips
groups.append("title")
.text(function(d) {
return d.state;
});
// Lines
groups.selectAll("path")
.data(function(d) {
return [ d.tax ];
})
.enter()
.append("path")
.attr("class", "line")
.attr("d", line)
.attr("fill", "none")
.attr("stroke-width", 2);
//Axes
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + (h - padding.bottom) + ")")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.attr("transform", "translate(" + (padding.left) + ",0)")
.call(yAxis);
});
</script>
</body>
</html>
state 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
Alabama 46.8 47.3 47.5 46.4 42.9 39.7 39.9 36.3 35.2 33.3 34.9 32.8 38.4 35.2 32.8 31.6 29.6 28.5 26.6 23.4 22.5 21.2 20.7 26.2 26.1 25.6 24.2 22.4 20.7 15 17.5 15.6 16.9 17.2 22.8 22.9 23.1 21.7 21.7 31.6 30.4 29.6 29.6 29 28.1
Alaska 38.3 38 38.1 36.5 35.6 33.1 31.1 28.4 28 26.3 25.2 22 18.6 24.9 23.4 29.1 26.3 25.6 23 26.4 22.3 23.6 22.4 26.9 25.2 24.9 24.7 41.8 37.9 30.6 30.5 30.2 30.3 31.5 27.6 35.5 37.6 37.6 35.7 39.6 39.6 35.4 36.3 34.8 33.8
Arizona 46.7 47.4 46.5 45.9 44 42.8 43.1 39.2 35.8 34.5 33.2 28.6 26.1 31.3 31.4 29.1 27.3 27.2 24.3 23.8 22.5 22.9 20.7 25.9 25.8 39.4 36.9 35.5 32.8 25.8 26.6 25.5 40.8 38.9 39.6 37.8 36.1 45.9 43.7 48 46.6 46.4 45.6 45.5 44.6
Arkansas 53.5 58.4 57.1 56.6 53 50.6 49 45.6 44.1 41.9 39.8 35.7 31.4 39.5 37.6 35.7 32.7 30.8 29 26.2 25.3 23.7 23.3 33 33.2 33.2 30.6 29.6 26.8 19.9 22.2 19.8 20.7 27.3 27.7 27.8 26.4 25.6 24.9 40.8 39.6 38.9 39.4 39.1 39.2
California 45.3 45.1 45.1 43 40 37.3 36.7 30.7 30 29 27.1 24.7 21.2 27.4 26.5 24.9 25 22.2 20.6 31.1 27.3 27.2 26.8 31 31.3 30.8 30.5 29.4 27.1 31.6 33.1 30.4 30.9 31.9 32.8 31.9 31.9 30 29.4 37 35 34.8 34.8 34.1 34.3
Colorado 41.8 41.7 39.8 47.2 43.2 40.2 40.3 40.1 34.1 33 31 29.3 24.6 37.2 33.3 32.6 33.2 31 27.5 24.1 24.7 25.4 23.8 28.7 26.8 25.9 25.2 23.7 21.5 15.6 18.4 17.6 18.1 18.4 17.2 30.5 30.6 29.2 29.3 36.4 36.3 35.5 34.9 34.2 34.1
Connecticut 52.7 56.5 57.3 55.2 53.2 50.4 49.7 47 45 43.3 36.2 33.9 30.3 37 35.4 35.4 34.2 32.3 29.6 31.4 33 33.6 32.1 34.5 36 35.9 35.5 34 31.3 23.7 26.3 23.7 34.7 40.6 40.4 40.1 40.7 44.6 51.8 53.7 53.1 55.1 52.9 53.7 53.7
Delaware 46 49.2 50 49.8 47.9 43.9 42.6 37.5 36.7 35.1 33.3 29.7 26.8 32.9 30.4 28.5 26.9 25.2 24.2 21.4 24.4 25.1 23.4 31.5 29.9 28.4 27.9 26.8 24.2 17.4 20.1 18.3 19.5 26.6 27.6 27 26.4 36.3 36.5 48.8 46.8 46.4 44.7 45 44.9
District of Columbia 36.8 35.6 34.8 38.9 35.5 29.3 40.5 35.1 35.4 32 30.4 28.1 24.3 29.4 28.9 26.5 25.8 27.7 24.3 22.6 23 26.7 33 41.8 40.1 38.2 38.6 37.6 35.1 27.5 27.9 26.7 27.3 33.9 33.1 32.7 32.8 32.3 46.9 52.5 49.2 54.4 52.5 52.4 52.9
Florida 52.5 53.4 52.7 52 48.4 44.7 44.7 43.7 43.6 41.6 39.8 36.7 32 37.3 35.5 32.5 33.1 30.5 28.6 26.5 28.5 28.8 27.8 33.7 33.4 32.2 31.7 30.2 26.9 20.2 22.5 20.4 21.5 22 22.5 21.2 21.2 20.2 20.4 42.9 42.5 42.6 42.3 42.2 42.3
Georgia 44.7 48.9 47.2 47.2 44.9 41.8 40.4 36.6 35.3 33.7 31.9 29.5 25.3 32.3 30.9 28 27 25.7 22.9 21.1 20.3 20.1 19.1 24.4 23.4 23.1 22.7 21.3 19.1 14 16 15 16.2 23 22.6 21.8 21.7 20.8 20.9 30.5 30.2 29.8 30.6 30.2 28.8
Hawaii 46.3 46.3 47.7 44.2 43.6 38.6 38.5 35.3 35.5 34.7 34 33.1 30.4 37.5 37 36.7 36.2 34.3 32.9 32.7 34.3 32.7 30.9 39.1 36.7 36.3 34.6 40 41.1 33.2 33.1 32.3 35 35.8 35.5 35.9 37.8 38.2 40.8 32.1 47.4 47.9 49.1 48.4 47.6
Idaho 44.6 44.5 47.1 45 42.4 40.2 37.5 33.2 30.9 30.3 28.9 25.3 22.4 28.4 25.7 25.1 23.4 27.9 25.4 24 23.5 22.7 22.2 27.9 31.8 29.5 28.2 27.8 24.7 18.8 21.3 20.3 21.1 26.3 27.4 26.6 26.3 25.2 24.9 34.6 33.6 32.6 33 32.5 31.2
Illinois 48.3 47.7 48.8 47.7 44.3 41.3 40.5 36.6 35.2 33.3 31.7 28.7 24.8 31.3 29 25.8 31 29 27.1 31.2 29.9 27.8 26.7 37.3 36.7 36 34.2 33.6 34.1 26.2 28.4 26.4 33.9 33.8 31.5 29.7 28.4 27.5 27.7 35.3 33.8 33.9 43.6 42.4 41.3
Indiana 43.5 43.1 42.6 40.6 38.2 36.2 34.5 37 35.2 34.5 31.7 28.4 24.4 31.1 29.8 28.3 26.5 29.4 26.5 24 23.2 23.1 22.5 26.9 27 26.7 25.3 23.7 20.8 15.2 18.3 16.4 26.4 26.9 27.4 26.9 27.1 33.5 33.8 41.6 39 38.6 38.3 38.1 37.2
Iowa 46.8 50.1 50.1 48.6 46.3 43.9 42.5 38.5 37.2 35.7 34.2 35.7 31 36.4 34.2 40.1 35.9 33.9 34.5 31.4 30.2 31.4 29.5 35 33.5 32.6 31.7 31 28.2 21 23.4 21.9 22.6 22.5 22.9 22.3 22.3 38.5 38.8 44.5 41.3 41 41.2 41.2 40.9
Kansas 48.8 49 48.3 47.3 44.5 40.8 39.5 36.1 34.7 32.6 31.8 29.2 24.7 35.2 32.8 38.8 34.9 32.3 29.3 27.4 27.5 25.3 25.3 30.1 29 28.6 28 26 23.2 17.7 19.7 19.3 29.3 30.5 31.5 31.6 29.6 28.7 28.9 37.9 36 35.2 34.9 35 34.3
Kentucky 36.5 35.9 35.9 34.9 33 30.6 29.8 26.6 25.3 23.8 22.3 19.5 16.6 25.2 24 22.2 21 20.2 18.3 16.4 15.8 16.9 15.8 20.3 20 19.3 18.5 17.3 15.1 11.1 14.3 12.6 14.1 13.5 14 20.9 20.8 19.9 19.8 35.2 35.1 34 33.9 33.8 33.3
Louisiana 48.3 47.5 47.6 45.7 42.9 39.5 38.9 35.1 33.3 31.7 30.4 27 23.5 29.8 31.1 30.4 27.2 26.7 24.5 22.3 24.1 22.5 22.2 28 28.2 26.6 26.4 23.7 21.2 15.6 19.7 18.6 22.5 22 22 22 21.4 20.8 20 30.4 30 29.5 29.4 29.6 29
Maine 51.5 53 53.7 52.6 51.4 48.1 47.2 43.6 44 40.7 38.2 34.4 29.7 38.4 36.7 39 36.3 34.1 30.5 29.4 29.6 30.4 29.6 34.2 33 32.6 32.1 44.6 36.6 29.7 30.6 34.1 33.3 32.5 34.3 45.8 45.3 43.3 42.6 48.2 46.6 46.3 47.1 46.7 46.1
Maryland 40.9 40.8 39.7 39.1 35.4 39.1 36.6 34.5 32 31 33.4 32.1 28 34.4 32.2 31.1 28.9 26.6 24.1 22.1 20.5 22.6 28.9 34.6 34 33.7 31.5 30.4 27.3 28.6 29 27 34.7 33.9 34.6 34.9 33.8 32.5 43.3 48.4 48.1 47.9 47.3 47.2 46.5
Massachusetts 48.8 52.2 52.2 51.8 48.6 50.5 50.6 46.9 45 42.5 41 37.1 32.7 41.4 38.8 36.5 34.9 31.8 28.3 27.5 25.7 26.2 25.5 89.3 36.5 36.1 40.9 38.7 35.4 28.4 28.6 27.5 39.2 36.9 37.8 37.6 38 37 45.6 48.5 47.3 46.8 46.9 52.1 51.5
Michigan 48.5 47.5 47.3 46.2 42.8 39.7 39.3 35.2 33.2 31.5 30.7 27.9 33.1 38.1 36.5 34.9 33.2 30.3 30.8 28.5 28.3 25.5 24.4 30 44.1 43.2 42.3 40.7 37.9 29.7 31.5 28.7 37.7 37.8 47 46.9 45.2 44.7 44.2 49 48.5 47.5 47.1 45.9 46.4
Minnesota 52.4 57.5 57 55.3 52.6 49.9 49 44.9 42.7 41.3 39.5 36.3 29.8 34.3 33.5 33.5 32.5 38 35.4 83.8 31.1 31.9 31.5 36.7 35.6 34.5 33.2 32.7 31.7 23.7 25.7 23.6 24.7 25.4 24.8 42 41 40.8 39.1 44.3 44.8 43.9 44.9 56.9 55.7
Mississippi 45.3 45.5 45.6 45.9 44.2 41 38.9 35.4 33.6 31.8 30.2 27.5 24.2 30.3 28 32.1 29.4 27.6 27 24.3 23.8 23.6 21.4 26.8 27.3 26.1 24.9 23.9 21.1 15.4 18.6 16.8 17.9 17.7 17.8 17.9 17.7 16.6 16.5 37.3 35.1 34.2 34.5 34.7 32.8
Missouri 46.2 45.1 45.1 44.7 39.1 38 37 34.1 32.6 29.7 28.4 26.3 28.1 34.2 30.9 28.5 26.7 25.2 24.4 22.4 21.9 21.6 20.9 27.9 27.3 25.7 25.1 23.6 20.8 15.8 18.1 16.8 18.2 17.7 18.1 17.6 17.2 16.7 16.4 29.2 28.7 27.4 27.8 26.9 25.9
Montana 46.1 49.9 48.9 47.9 45.8 44.2 42 38.5 37.2 35.3 33.1 30.4 25.9 35 33.5 31.4 30.1 27.8 26 24.2 23.7 23.2 21.9 27.8 27 26.8 25.5 23.9 21.4 16.1 19.2 16.8 17.7 28.4 27.7 43.4 42.5 42.1 41.7 47 44.3 43.8 44.2 44 43
Nebraska 46.1 51.1 51 50 47.1 44.9 43.7 39.2 37.9 35.3 34.5 31.6 31.1 35.9 35.5 32.7 34.3 35 30.9 30 28.3 27.7 26.5 34.2 34 33 31.4 29.8 27 20.1 22 20.7 26.6 27.2 28.5 28.2 27.7 27.4 27.3 35.2 33.1 32.3 32.6 31.3 31
Nevada 40.9 44.3 44.7 43 40.5 40.1 36.5 33.1 31.5 28.5 28.4 25.1 22 31.1 28.4 29.1 27.2 27.7 24.7 29.3 27.4 28.4 27.9 31 31 30.3 29.7 29.4 26.1 19.4 21.7 21.4 22.4 31.6 31.1 31.7 31.5 29.6 29.5 36.4 36.1 34.6 34.9 34.2 34
New Hampshire 48.4 51.2 51.5 50.1 46.6 45.6 44.4 40.2 37.6 36.2 34.2 29.9 26.8 36.5 37 33 32.4 28.9 26.2 27.2 26.6 27.4 24.8 31.1 29.9 29.1 27.7 31 27.4 24.2 26.7 24.4 25.4 25.5 25.9 31.9 31.6 34.7 38.9 47.5 46.8 45.4 45.8 46.4 45.9
New Jersey 52.8 52.3 55.2 53.8 51.1 50.4 47.5 43.6 42.5 40.7 39.3 35.4 34.7 40.6 39.2 35.8 34.3 32.6 30.8 28.8 31 31.4 29.2 35 34.1 32.9 32.9 30.7 38.1 30.6 31.3 30 40.8 44.6 49.7 49.7 49.5 48.7 47.7 51.9 50.9 50.3 50.7 50.3 49.9
New Mexico 48 47.5 47.8 45.8 43.2 40.4 38.8 35.7 34.7 32 31.7 28.8 25.1 31 28.7 27.7 28.1 27.2 24.4 23.2 21.1 21.2 20.3 28.4 27.5 26.3 25.6 24.5 22.3 16.1 18.9 17.2 17.9 34.3 33.5 34.1 34 32 31 37.6 45.1 44.1 43.3 43.3 42.1
New York 48 46.8 50.2 48.5 44.7 42.4 42.8 38.7 37.6 35.7 34.9 31.7 27.7 36.7 34.8 33.3 31.6 29.4 27.1 29.2 30.5 29.7 28.9 38.5 37.7 37.3 36 34.9 31.5 24.5 36.4 33.6 33.3 34.1 34.5 34.6 34.7 34.5 46.6 49.4 55.5 54.4 53.8 53.4 53.2
North Carolina 34 34.8 34.6 33.2 30.4 27.9 27.3 23.9 22.9 21.2 20 18 15.2 24 22.8 21.5 19.9 18.8 16.7 15.5 14.2 17.2 16.3 21.3 20.4 19.9 19.1 17.3 15.5 11.3 14.1 13.4 14.3 14.1 14.5 21 21 20 19.9 32.4 31.8 31.7 31.9 31.6 30.7
North Dakota 48.8 48.8 48.2 47.6 44.6 41.4 40.1 35.7 34.5 33.6 32.3 29.5 25.7 36 33.8 32.6 30.8 35 31.6 31.9 28.8 29.1 27.6 37.8 37.9 37.2 35 33.1 30.4 22.9 25.4 23.1 23 23.5 24.4 24.8 24.7 23.4 23.5 34.6 32.9 32.2 32.6 31.9 30.6
Ohio 47.2 46.9 54.8 53.6 50 47.4 46.2 42.7 40.9 39.2 37.5 33.7 26.7 33.6 32.5 30.6 29.4 31.5 28.2 25.1 24.3 23.8 23.4 31.7 30.8 30.1 28.8 27.8 24.8 18.1 20.8 18.7 26.2 26.2 26.9 40 39.1 37.2 36.6 42.1 41.1 40.3 40.9 40.1 39.8
Oklahoma 52.8 52.8 52 51.2 48.2 45.3 43.8 39.5 37.8 41.3 39.5 36.3 31 36.4 35.8 32.5 29.7 31.7 29.2 26.7 26.2 25.2 23.6 28.8 29.2 28.9 27.3 25.6 23.1 17.2 19.6 18.2 19.3 19.2 19.2 35.5 35.2 34.6 33.9 39.2 38.2 36.8 37.8 36.9 37.1
Oregon 41.4 39.3 48.4 46.5 43.2 40.1 38.3 33.5 32.8 31.5 29.9 27.2 32.9 36.3 35.9 41.1 36.7 32.8 29.7 28 27.5 27.1 25 32.5 32.7 32.5 31.4 39.3 35.6 28.4 29.5 28.2 41.3 39.4 37.9 37.1 37.3 36.6 36.6 42.9 40.5 39.7 40 38.5 40.7
Pennsylvania 58.2 58.2 57.9 55.8 52.2 49.7 48.8 45.3 42.9 42.4 40.1 37.2 31.8 34.8 34 32.4 30.9 30.4 27.7 25.4 23.6 28.9 27.7 34.8 34 32.5 31.2 28.8 26.8 19.6 22.3 20.3 35 35.6 40.4 40.2 40.5 39.6 39.4 47.8 46.2 45.2 44.4 43.9 40.4
Rhode Island 52.2 50.5 51.7 50.9 47.4 49.8 49.7 46.2 44.3 43.3 40.3 36.3 36.9 41.1 38.9 38.7 36.1 33.6 31.9 35.1 31.1 30 28.8 40.3 38.2 39.6 39.2 40.9 37.7 29.4 31 34.6 38.7 43.7 52.3 50.6 49.9 49.3 49.1 57.8 57.3 56.9 54.8 54.9 54.7
South Carolina 40.8 41.1 41.8 39.8 36.8 34.2 33.2 30.5 29.9 28.7 27.4 24.2 20.7 28.3 27.7 25.9 24.1 23 20.6 18.3 17.8 17.8 16.4 22.3 22.1 20.7 20.1 18.8 17.3 12.1 14.7 13.6 14.8 14.5 14.7 14.6 14.9 14.1 13.9 27.2 33.6 32.6 32.6 32.4 31.7
South Dakota 51.9 51.2 50.5 49.5 46.7 44.5 43.1 37.6 37 37.4 35.3 33.8 29.2 34.5 33.6 35.9 34.3 31.2 30 28 25.9 26.4 23.8 30.4 29 33.3 31.4 29.6 27.4 20.9 22 20.5 21.1 26.4 26.2 26 26.3 43.7 41.9 46.7 43.2 43.5 43.6 44.1 42.8
Tennessee 50.5 50.5 51.5 49.4 46.4 43.5 42.3 38.3 36.6 34.8 33 30.7 26.5 32.8 31.4 29.4 28 25.9 23.9 21.5 21.1 20.1 19.4 24.6 24.2 23.7 23 22.1 19.5 14.2 16.7 15.3 18 18.5 18.5 18.1 18.2 27.8 26.9 35.1 34.1 33.1 33.7 32.8 32.6
Texas 56 56.5 57.1 55.8 52.4 49.7 49.7 44.8 42.6 41.6 39.6 35.9 31.5 36.8 34.8 34.6 31.9 32.8 30.7 28.8 32.8 32.8 29.8 36.6 35.1 34.5 34.2 32.2 28.9 22.2 24.1 23 22.7 22.9 23.8 23.7 24 40.4 39.6 43.8 42.9 42.2 42.8 42.1 42
Utah 43.7 43 43.8 42.3 39.5 36.9 35.8 32.3 29.8 31.5 28.7 26.4 24.2 29.4 26.8 27.1 25.8 31.7 28.8 25.7 23.3 28.1 25.8 31.5 29.9 28.9 27.1 33.9 31 24.1 25.8 25.5 28.5 29.3 28.9 28.8 29.2 27.9 26.9 36.5 46 45.2 43.4 43 42.7
Vermont 50.6 50 50.3 48.4 47.9 42.5 42.6 38.1 36.5 34 32.8 29.9 26 36.4 34.6 31.5 29 26.6 25.4 23.1 22 22.6 23 27.6 27.5 34.6 33.7 31.8 29.1 22.6 24.1 22 33.8 36.3 35.6 35.3 44.9 42.8 42.7 48.8 47.5 48.9 48.4 47.3 47.2
Virginia 34.8 35.1 34.9 33.6 31.3 27.7 27.3 24.5 22.9 21.7 20.3 18.6 15.3 24.3 22.1 20.3 19.6 18.1 16.9 14.3 13.6 14.2 13.6 16.9 16.8 16.6 16.6 16.3 14.4 10.5 13.3 12.4 13.5 12.9 18 19.6 19.7 19.2 18.9 29 28.4 28.1 28 26.5 26.7
Washington 47.1 52.1 52.3 51.2 49 45.3 44.7 41 39 37.6 36 34.9 38.3 36.8 84.1 31 35 33.8 31.2 29.9 28.2 27.1 26.7 35.5 35.7 42.7 40.2 39.1 37.1 29.6 30.5 29.5 38 38.9 38.4 45.7 44.7 43.8 42.5 46.2 53 52.8 52.5 52.1 51.6
West Virginia 48.1 48.4 50.1 47.6 44.3 41.3 40.9 37.1 40.1 38.9 37.8 33.3 28.3 34 32 31.7 29.3 27 25.2 23 22.9 23.4 22.3 27.3 26.1 26.1 25.5 24 21.3 16.2 18.5 17.3 18.4 27.1 27.9 27.7 27 26.4 25.4 34.6 34 33.7 32.8 32.3 32
Wisconsin 54.7 54.6 56.3 54.7 51.5 46.8 46.1 42 40.9 39.2 37 37.3 35.9 40.7 38.4 37 35.3 35.7 33.3 30.4 29 28.3 29.7 34.7 33 33.9 33.9 39.4 34.1 26.5 28.1 28.9 29.4 30.4 30.8 30.7 30 28.3 43 51 50.3 49.5 48.8 47.6 46.9
Wyoming 46.5 46.5 46.5 44.7 41.5 37.6 36.9 32.1 30.9 28.9 28.6 24.9 22.5 29.4 27.5 24.5 23.4 21.2 20.2 21.6 22 20.6 19.2 24.4 23.5 22.2 21.9 21.3 19 13.5 15.8 14.8 16.2 27.8 27.3 27.1 26.6 26.5 25.5 34.4 33 33.1 32.9 32.1 31.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment