Display of states by humid heat index by index category, scenario, and time period. Data and concept from the American Climate Prospectus.
Last active
May 21, 2018 05:03
-
-
Save delgadom/cb327e51e62b72d0c3c6d319a4ead6f5 to your computer and use it in GitHub Desktop.
states by humid heat index
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> | |
<meta charset="utf-8"> | |
<html> | |
<head> | |
<link rel="stylesheet" href='states.css'></link> | |
</head> | |
<body> | |
<header> | |
<div id='selectors' width='100%'></div> | |
</header> | |
<div width="100%"> | |
<svg width="760" height="500"></svg> | |
</div> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script src="states.js"></script> | |
</body> | |
</html> |
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
.axis path, | |
.axis line { | |
fill: none; | |
stroke: #000; | |
shape-rendering: crispEdges; | |
} | |
.axis text { | |
font: 10px sans-serif; | |
} | |
text.state { | |
color: black; | |
font: 8px sans-serif; | |
} | |
text.state:hover { | |
color: blue; | |
font-style: bold; | |
} | |
text.period { | |
color: black; | |
font: 12px sans-serif; | |
} | |
div.tooltip { | |
position: absolute; | |
text-align: center; | |
width: 100px; | |
height: 48px; | |
padding: 2px; | |
font: 10px sans-serif; | |
background: lightsteelblue; | |
border: 0px; | |
border-radius: 8px; | |
pointer-events: none; | |
} |
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
// setup | |
var periods = ['1981-2010','2020-2039','2040-2059','2080-2099','2120-2139','2140-2159','2180-2199']; | |
var per_vals = [[1981,2010],[2020,2039],[2040,2059],[2080,2099],[2120,2139],[2140,2159],[2180,2199]]; | |
var second_period = '2180-2199'; | |
var cat_select = d3.select('#selectors') | |
.append('select') | |
.attr('id', '#select_category') | |
.on('change', refresh_vis); | |
var scen_select = d3.select('#selectors') | |
.append('select') | |
.attr('id', '#select_scenario') | |
.on('change', refresh_vis); | |
cat_select.selectAll('option') | |
.data(['I', 'II', 'III', 'IV']) | |
.enter() | |
.append('option') | |
.text(function(d) { return 'category ' + d; }) | |
.attr('value', function(d) { return d; }); | |
scen_select.selectAll('option') | |
.data(['2.6', '4.5', '6.0', '8.5']) | |
.enter() | |
.append('option') | |
.text(function(d) { return 'RCP ' + d; }) | |
.attr('value', function(d) { return 'rcp' + d3.format('d')(d*10); }); | |
var svg = d3.select('svg'), | |
margin = {top: 40, right: 40, bottom: 80, left: 40}, | |
width = svg.attr('width') - margin.left - margin.right, | |
height = svg.attr('height') - margin.top - margin.bottom; | |
var formatValue = d3.format(',.2f'); | |
var y = d3.scaleLog() | |
.rangeRound([height, 0]); | |
var g = svg.append('g') | |
.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); | |
var formatAxis = function(val) { | |
if (val < 0.01) { | |
return 'never observed'; | |
} else if (val < 0.1) { | |
return d3.format('d')(val * 100) + ' per century'; | |
} else if (val < 1) { | |
return d3.format('d')(val * 10) + ' per decade'; | |
} else { | |
return d3.format('d')(val) + ' per year'; | |
} | |
} | |
var text_width = 6, | |
text_height = 3; | |
var transition = d3.transition() | |
.duration(750) | |
.ease(d3.easeLinear); | |
function arrange_points_without_conflict(data, period_index, position) { | |
var this_period_data = []; | |
data.forEach(function(row) { | |
this_period_data.push({'State': row.State, 'value': row[periods[period_index]]}); | |
}); | |
var simulation = d3.forceSimulation(this_period_data) | |
.force('y', d3.forceY(function(d) { return y(d.value); }).strength(1)) | |
.force('x', d3.forceX(width / 4)) | |
.force('collide', d3.forceCollide(8)) | |
.stop(); | |
for (var i = 0; i < 120; ++i) simulation.tick(); | |
return this_period_data; | |
} | |
// Define the div for the tooltip | |
var tooltip = d3.select('body').append('div') | |
.attr('class', 'tooltip') | |
.style('opacity', 0); | |
var current_period; | |
var hovered = 0; | |
function handleMouseOver(d, i, period) { | |
hovered++; | |
if (period === undefined) { | |
period = current_period; | |
} | |
d3.selectAll('.' + d[period].State) | |
.attr('fill', 'blue') | |
.style('font-size', '10px') | |
.style('font-weight', 'bold'); | |
tooltip.transition() | |
.delay(1000) | |
.duration(200) | |
.style('opacity', .9); | |
tooltip.html('<p>' + d[period].State + '</p><p>' + formatAxis(d[period].value) + '<\p>') | |
.style('left', (d3.event.pageX + 20) + 'px') | |
.style('top', (d3.event.pageY - 35) + 'px'); | |
} | |
function handleMouseOut(d, i) { | |
hovered--; | |
d3.selectAll('.' + d[current_period].State) | |
.attr('fill', 'black') | |
.style('font-size', '8px') | |
.style('font-weight', 'normal'); | |
tooltip | |
.transition() | |
.duration(500) | |
.style('opacity', 0) | |
.transition() | |
.duration(2000) | |
.on('end', function() { if (hovered === 0) { after_projection(); }}); | |
} | |
var simulated_points_by_period = {}, | |
projection_data = [], | |
alldata = []; | |
function after_projection() { | |
setTimeout(function() { | |
if ((hovered === 0)) { update_projection(); }; | |
}, 1000); | |
} | |
function update_projection() { | |
var prev_period; | |
if (current_period === undefined) { | |
current_period = 1; | |
prev_period = 1; | |
} else { | |
prev_period = current_period; | |
current_period = current_period % (periods.length - 1) + 1; | |
} | |
var transitions = 0; | |
g.selectAll('.per2label') | |
.transition() | |
.duration(1000) | |
.attr('dx', function(d) { | |
return width / 2 + width / 2 * ((current_period - 1) / (periods.length - 1)) - 6*4.5}) | |
.on("start", function repeat() { | |
d3.active(this) | |
.tween("text", function() { | |
var that = d3.select(this), | |
i1 = d3.interpolateNumber(per_vals[prev_period][0], per_vals[current_period][0]), | |
i2 = d3.interpolateNumber(per_vals[prev_period][1], per_vals[current_period][1]); | |
return function(t) { that.text(d3.format("d")(i1(t)) + '-' + d3.format("d")(i2(t))); }; | |
}); | |
}); | |
g.selectAll('.per2text') | |
.data(projection_data) | |
.transition() | |
.duration(1000) | |
.attr('dx', function(d) { | |
return width / 4 + width / 2 * ((current_period - 1) / (periods.length - 1)) + d[current_period].x; }) | |
.attr('dy', function(d) { | |
return d[current_period].y; }) | |
.on('start', function() { transitions++; }) | |
.on('end', function(d, i) { | |
if( --transitions === 0 ) { | |
after_projection(); | |
}}); | |
} | |
var y_axis = g.append('g') | |
.attr('class', 'axis axis--y') | |
.attr('transform', 'translate(' + margin.left + ',0)'); | |
var initailized = false; | |
function start_animation(category, scenario) { | |
d3.selectAll('.state').remove(); | |
d3.selectAll('.period').remove(); | |
current_period = undefined; | |
simulated_points_by_period = []; | |
projection_data = []; | |
alldata = []; | |
var fp = ( | |
'wetbulb_SMME_annual_region-state_Cat_' | |
+ category.toUpperCase() | |
+ '_' | |
+ scenario.toLowerCase() | |
+ '_exceedances_20yr_percentiles_pop.csv'); | |
d3.csv(fp, type, function(error, data) { | |
if (error) throw error; | |
data.forEach(function(row) { | |
periods.forEach(function(per) { | |
alldata.push(row[per]); | |
}); | |
}); | |
y.domain(d3.extent(alldata)); | |
y_axis.call(d3.axisLeft(y).ticks(20, formatAxis)); | |
periods.forEach(function(per, i) { | |
simulated_points_by_period[per] = arrange_points_without_conflict(data, i, i); | |
}); | |
simulated_points_by_period[periods[1]].forEach(function(row, i) { | |
projection_data.push([]); | |
periods.forEach(function(per, j) { | |
projection_data[i].push(simulated_points_by_period[per][i]); | |
}); | |
}); | |
// create group1 text | |
g.append('g') | |
.selectAll('text') | |
.data(projection_data) | |
.enter() | |
.append('text') | |
.attr('class', function(d) { return 'state per1text' + ' ' + d[0].State; }) | |
.attr('dx', function(d) { return d[0].x; }) | |
.attr('dy', function(d) { return d[0].y; }) | |
.text(function(d) { return d[0].State; }) | |
.on('mouseover', function(d, i) { handleMouseOver(d, i, 0); }) | |
.on('mouseout', function(d, i) { handleMouseOut(d, i, 0); }); | |
g.append('text') | |
.attr('class', 'period per1label') | |
.attr('dx', width / 4 - 6*4.25) | |
.attr('dy', height + margin.top + margin.bottom / 8) | |
.text(periods[0]); | |
// create group2 text | |
g.append('g') | |
.selectAll('text').filter('per2text') | |
.data(projection_data) | |
.enter() | |
.append('text') | |
.attr('class', function(d) { return 'state per2text' + ' ' + d[1].State; }) | |
.attr('dx', function(d) { return width / 4 + d[1].x; }) | |
.attr('dy', function(d) { return d[1].y; }) | |
.text(function(d) { return d[1].State; }) | |
.on('mouseover', function(d, i) { handleMouseOver(d, i); }) | |
.on('mouseout', function(d, i) { handleMouseOut(d, i); }); | |
g.append('g') | |
.selectAll('text').filter('per2label') | |
.data([periods]) | |
.enter() | |
.append('text') | |
.attr('class', 'period per2label') | |
.attr('dx', width / 2 - 6*4.25) | |
.attr('dy', height + margin.top + margin.bottom / 8) | |
.text(function(d) { return d[1]; }); | |
initailized = true; | |
update_projection(); | |
}); | |
} | |
function refresh_vis() { | |
category = cat_select.property('value'); | |
scenario = scen_select.property('value'); | |
start_animation(category, scenario); | |
} | |
cat_select.property('value', 'III'); | |
scen_select.property('value', 'rcp85'); | |
refresh_vis(); | |
function type(d) { | |
periods.forEach(function(per) { | |
d[per] = +d[per]; | |
if (d[per] == 0.0) { | |
d[per] = 0.005; | |
} | |
}); | |
return d; | |
} |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 68.97 | 77.0 | 79.3 | 78.4 | 77.3 | 78.8 | 76.8 | |
AK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AZ | 5.58 | 9.5 | 11.1 | 10.9 | 10.5 | 10.7 | 10.1 | |
AR | 64.40 | 73.2 | 75.4 | 73.9 | 73.2 | 74.8 | 72.5 | |
CA | 0.53 | 0.9 | 1.0 | 1.0 | 0.9 | 1.0 | 0.9 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 30.81 | 42.9 | 44.8 | 45.3 | 44.6 | 43.8 | 41.9 | |
DC | 57.47 | 67.5 | 69.0 | 68.7 | 68.0 | 68.1 | 66.0 | |
DE | 43.92 | 55.6 | 57.0 | 57.2 | 56.2 | 55.8 | 53.7 | |
FL | 87.99 | 90.2 | 90.5 | 90.5 | 90.3 | 90.3 | 90.1 | |
GA | 52.29 | 62.8 | 65.7 | 65.1 | 63.5 | 64.9 | 62.4 | |
HI | 69.09 | 74.7 | 75.9 | 75.8 | 75.6 | 75.0 | 75.0 | |
ID | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IL | 40.24 | 52.9 | 54.6 | 53.8 | 52.7 | 53.7 | 51.1 | |
IN | 34.83 | 48.4 | 50.3 | 49.7 | 48.5 | 49.2 | 46.7 | |
IA | 32.76 | 44.6 | 45.8 | 44.7 | 43.5 | 45.2 | 42.5 | |
KS | 38.80 | 47.7 | 49.5 | 48.2 | 47.3 | 48.8 | 46.4 | |
KY | 48.53 | 62.0 | 64.3 | 63.4 | 61.8 | 63.2 | 60.5 | |
LA | 86.19 | 88.9 | 89.7 | 88.8 | 89.0 | 89.5 | 88.5 | |
ME | 14.84 | 23.9 | 26.8 | 26.6 | 25.9 | 26.2 | 24.4 | |
MD | 40.62 | 52.9 | 54.6 | 54.7 | 53.7 | 53.4 | 51.2 | |
MA | 23.51 | 34.2 | 36.5 | 36.7 | 36.1 | 35.7 | 34.0 | |
MI | 18.87 | 29.6 | 31.7 | 31.7 | 31.0 | 30.9 | 29.0 | |
MN | 20.39 | 29.7 | 31.5 | 31.6 | 30.2 | 31.0 | 29.2 | |
MS | 77.58 | 83.5 | 85.0 | 83.9 | 83.5 | 84.6 | 83.1 | |
MO | 49.41 | 61.0 | 63.1 | 61.9 | 60.6 | 62.2 | 59.6 | |
MT | 0.02 | 0.0 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | |
NE | 26.42 | 35.5 | 37.1 | 35.8 | 34.6 | 36.7 | 34.1 | |
NV | 0.27 | 0.7 | 1.0 | 0.9 | 0.8 | 1.0 | 0.8 | |
NH | 16.40 | 26.1 | 28.7 | 28.8 | 28.0 | 28.1 | 26.4 | |
NJ | 35.97 | 48.1 | 49.5 | 50.0 | 49.1 | 48.3 | 46.6 | |
NM | 0.01 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NY | 28.93 | 40.8 | 42.7 | 43.0 | 42.2 | 41.6 | 39.7 | |
NC | 46.99 | 58.2 | 60.3 | 60.2 | 58.7 | 59.4 | 57.1 | |
ND | 3.65 | 6.3 | 7.2 | 7.2 | 6.6 | 7.1 | 6.4 | |
OH | 27.89 | 41.1 | 42.9 | 42.8 | 41.8 | 41.9 | 39.6 | |
OK | 52.53 | 58.5 | 59.9 | 58.8 | 58.9 | 59.3 | 57.6 | |
OR | 5.27 | 9.6 | 11.8 | 11.2 | 10.7 | 11.3 | 9.9 | |
PA | 30.60 | 43.3 | 45.1 | 45.3 | 44.5 | 44.0 | 42.0 | |
RI | 19.13 | 28.5 | 30.8 | 30.9 | 30.1 | 29.9 | 28.2 | |
SC | 65.51 | 73.5 | 75.3 | 75.2 | 73.8 | 74.8 | 73.1 | |
SD | 8.57 | 12.9 | 14.0 | 13.7 | 12.8 | 13.8 | 12.6 | |
TN | 52.68 | 65.1 | 67.7 | 66.8 | 65.0 | 66.7 | 64.1 | |
TX | 67.65 | 69.8 | 70.3 | 69.8 | 70.1 | 70.1 | 69.4 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 10.96 | 18.7 | 21.6 | 20.9 | 20.4 | 21.1 | 18.9 | |
VA | 42.49 | 53.8 | 55.5 | 55.5 | 54.4 | 54.5 | 52.1 | |
WA | 2.32 | 5.1 | 7.3 | 6.6 | 6.1 | 6.9 | 5.6 | |
WV | 28.55 | 42.4 | 44.6 | 44.5 | 43.2 | 43.3 | 41.0 | |
WI | 21.79 | 31.9 | 33.4 | 33.6 | 32.5 | 32.9 | 31.0 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 68.97 | 77.9 | 81.6 | 84.0 | 85.1 | 85.3 | 86.0 | |
AK | 0.00 | 0.0 | 0.0 | 0.2 | 0.3 | 0.4 | 0.6 | |
AZ | 5.58 | 10.0 | 13.7 | 18.3 | 20.5 | 21.7 | 22.3 | |
AR | 64.40 | 73.4 | 77.1 | 79.8 | 81.8 | 81.7 | 82.2 | |
CA | 0.53 | 0.9 | 1.3 | 1.8 | 2.3 | 2.5 | 2.6 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 30.81 | 42.9 | 49.3 | 55.0 | 59.5 | 59.4 | 60.2 | |
DC | 57.47 | 67.7 | 72.0 | 75.0 | 77.5 | 77.9 | 77.9 | |
DE | 43.92 | 55.7 | 61.0 | 65.7 | 68.8 | 69.2 | 69.5 | |
FL | 87.99 | 90.4 | 91.0 | 91.3 | 91.5 | 91.5 | 91.5 | |
GA | 52.29 | 63.6 | 69.5 | 73.8 | 75.9 | 76.4 | 77.5 | |
HI | 69.09 | 74.3 | 76.7 | 78.1 | 78.4 | 78.4 | 78.6 | |
ID | 0.00 | 0.0 | 0.1 | 0.2 | 0.3 | 0.4 | 0.5 | |
IL | 40.24 | 52.2 | 58.1 | 63.4 | 66.7 | 66.4 | 67.5 | |
IN | 34.83 | 47.7 | 54.2 | 60.3 | 63.8 | 63.8 | 65.0 | |
IA | 32.76 | 43.1 | 49.3 | 55.6 | 59.1 | 58.9 | 60.2 | |
KS | 38.80 | 47.4 | 52.2 | 56.4 | 59.4 | 59.5 | 60.4 | |
KY | 48.53 | 62.0 | 68.0 | 72.7 | 75.4 | 75.5 | 76.4 | |
LA | 86.19 | 89.2 | 90.2 | 90.3 | 90.8 | 90.9 | 90.7 | |
ME | 14.84 | 23.9 | 30.7 | 37.1 | 41.6 | 42.0 | 43.1 | |
MD | 40.62 | 53.0 | 58.8 | 63.9 | 67.3 | 67.6 | 68.1 | |
MA | 23.51 | 34.3 | 40.8 | 46.5 | 51.3 | 51.2 | 52.0 | |
MI | 18.87 | 28.9 | 35.1 | 42.5 | 46.2 | 46.1 | 48.2 | |
MN | 20.39 | 29.1 | 35.5 | 43.0 | 46.4 | 46.3 | 48.0 | |
MS | 77.58 | 84.1 | 86.1 | 87.4 | 88.3 | 88.4 | 88.5 | |
MO | 49.41 | 60.5 | 65.7 | 70.1 | 72.6 | 72.7 | 73.5 | |
MT | 0.02 | 0.1 | 0.2 | 0.5 | 0.8 | 1.1 | 1.2 | |
NE | 26.42 | 34.9 | 40.2 | 45.4 | 48.3 | 48.7 | 49.6 | |
NV | 0.27 | 0.8 | 1.4 | 2.5 | 3.5 | 4.1 | 4.4 | |
NH | 16.40 | 26.2 | 32.9 | 39.6 | 44.4 | 44.5 | 45.6 | |
NJ | 35.97 | 48.0 | 53.8 | 59.3 | 63.0 | 63.2 | 63.8 | |
NM | 0.01 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.1 | |
NY | 28.93 | 40.7 | 47.0 | 53.3 | 57.3 | 57.4 | 58.4 | |
NC | 46.99 | 58.3 | 64.6 | 69.4 | 72.0 | 72.6 | 73.6 | |
ND | 3.65 | 6.3 | 8.8 | 12.6 | 14.5 | 14.9 | 15.9 | |
OH | 27.89 | 40.4 | 47.3 | 54.1 | 58.0 | 57.9 | 59.6 | |
OK | 52.53 | 59.1 | 61.8 | 64.4 | 67.1 | 66.9 | 67.4 | |
OR | 5.27 | 9.5 | 14.0 | 19.5 | 22.8 | 23.8 | 24.9 | |
PA | 30.60 | 43.2 | 49.7 | 56.1 | 60.1 | 60.2 | 61.3 | |
RI | 19.13 | 28.5 | 34.7 | 40.0 | 44.5 | 44.8 | 45.2 | |
SC | 65.51 | 73.5 | 77.9 | 80.8 | 82.0 | 82.6 | 83.3 | |
SD | 8.57 | 12.7 | 16.1 | 20.6 | 22.6 | 23.1 | 24.0 | |
TN | 52.68 | 65.4 | 71.2 | 75.6 | 77.9 | 78.1 | 79.1 | |
TX | 67.65 | 70.3 | 71.0 | 71.8 | 72.7 | 72.7 | 72.6 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 10.96 | 18.7 | 25.2 | 31.3 | 35.6 | 36.2 | 37.2 | |
VA | 42.49 | 53.8 | 59.6 | 64.5 | 67.8 | 68.1 | 68.8 | |
WA | 2.32 | 5.1 | 9.2 | 14.2 | 17.3 | 18.4 | 19.2 | |
WV | 28.55 | 42.3 | 50.0 | 56.7 | 61.1 | 61.2 | 62.5 | |
WI | 21.79 | 30.8 | 36.8 | 43.9 | 47.6 | 47.3 | 49.2 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 68.97 | 76.9 | 80.0 | 86.0 | 88.1 | 88.3 | 88.9 | |
AK | 0.00 | 0.0 | 0.0 | 0.3 | 1.4 | 2.0 | 2.7 | |
AZ | 5.58 | 9.2 | 12.4 | 20.8 | 27.4 | 30.1 | 31.0 | |
AR | 64.40 | 73.2 | 76.5 | 82.2 | 85.4 | 85.9 | 86.1 | |
CA | 0.53 | 0.8 | 1.1 | 2.1 | 3.6 | 4.1 | 4.9 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | |
CT | 30.81 | 41.1 | 45.3 | 59.4 | 66.6 | 67.5 | 69.0 | |
DC | 57.47 | 65.8 | 69.2 | 77.4 | 81.4 | 82.1 | 82.6 | |
DE | 43.92 | 53.5 | 57.5 | 69.0 | 74.2 | 75.3 | 76.3 | |
FL | 87.99 | 90.2 | 90.7 | 91.6 | 91.8 | 91.8 | 91.8 | |
GA | 52.29 | 62.3 | 66.8 | 77.4 | 81.6 | 82.3 | 83.5 | |
HI | 69.09 | 73.9 | 76.4 | 78.6 | 79.2 | 79.2 | 79.3 | |
ID | 0.00 | 0.0 | 0.0 | 0.2 | 0.6 | 0.7 | 1.1 | |
IL | 40.24 | 49.1 | 54.2 | 67.4 | 73.2 | 74.0 | 75.2 | |
IN | 34.83 | 44.1 | 49.6 | 64.9 | 71.0 | 72.3 | 73.8 | |
IA | 32.76 | 41.4 | 46.3 | 58.9 | 66.1 | 67.2 | 68.4 | |
KS | 38.80 | 46.6 | 50.3 | 58.8 | 64.6 | 65.8 | 66.4 | |
KY | 48.53 | 59.9 | 65.2 | 76.5 | 81.1 | 81.8 | 82.7 | |
LA | 86.19 | 89.0 | 89.9 | 90.8 | 91.4 | 91.5 | 91.4 | |
ME | 14.84 | 22.1 | 27.1 | 42.5 | 50.7 | 52.4 | 55.0 | |
MD | 40.62 | 50.7 | 55.1 | 67.4 | 73.3 | 74.4 | 75.4 | |
MA | 23.51 | 32.2 | 36.8 | 51.0 | 58.6 | 59.9 | 61.7 | |
MI | 18.87 | 27.0 | 31.9 | 48.0 | 56.2 | 57.9 | 60.1 | |
MN | 20.39 | 27.1 | 32.6 | 47.4 | 55.8 | 57.1 | 59.1 | |
MS | 77.58 | 83.4 | 85.3 | 88.6 | 90.0 | 90.1 | 90.3 | |
MO | 49.41 | 59.4 | 64.3 | 72.8 | 77.8 | 78.9 | 79.1 | |
MT | 0.02 | 0.0 | 0.1 | 0.6 | 1.5 | 1.9 | 2.8 | |
NE | 26.42 | 33.3 | 37.3 | 48.1 | 54.7 | 55.6 | 57.3 | |
NV | 0.27 | 0.6 | 1.1 | 3.3 | 6.6 | 7.9 | 9.1 | |
NH | 16.40 | 24.3 | 29.3 | 45.4 | 53.9 | 55.3 | 57.9 | |
NJ | 35.97 | 46.2 | 50.2 | 63.3 | 69.6 | 70.6 | 71.9 | |
NM | 0.01 | 0.0 | 0.0 | 0.1 | 0.1 | 0.1 | 0.2 | |
NY | 28.93 | 38.9 | 43.4 | 58.1 | 65.3 | 66.3 | 68.1 | |
NC | 46.99 | 56.7 | 61.5 | 73.3 | 78.1 | 79.2 | 80.5 | |
ND | 3.65 | 5.5 | 7.3 | 15.0 | 20.6 | 21.7 | 24.5 | |
OH | 27.89 | 38.0 | 43.4 | 59.5 | 66.6 | 68.0 | 69.8 | |
OK | 52.53 | 58.7 | 61.0 | 66.6 | 70.6 | 71.6 | 71.9 | |
OR | 5.27 | 8.3 | 11.4 | 22.7 | 30.5 | 32.4 | 35.5 | |
PA | 30.60 | 40.9 | 45.8 | 60.9 | 68.1 | 69.4 | 71.0 | |
RI | 19.13 | 26.6 | 30.9 | 44.0 | 51.5 | 52.9 | 54.9 | |
SC | 65.51 | 72.7 | 76.1 | 83.2 | 85.7 | 86.3 | 87.0 | |
SD | 8.57 | 11.6 | 14.2 | 23.3 | 29.0 | 30.0 | 32.4 | |
TN | 52.68 | 63.7 | 69.1 | 79.2 | 83.3 | 83.9 | 84.7 | |
TX | 67.65 | 70.1 | 70.8 | 72.6 | 74.2 | 74.4 | 74.5 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | |
VT | 10.96 | 17.2 | 22.1 | 37.3 | 46.2 | 47.8 | 50.6 | |
VA | 42.49 | 51.7 | 56.1 | 68.1 | 73.7 | 74.8 | 76.1 | |
WA | 2.32 | 4.3 | 6.9 | 17.6 | 24.6 | 26.8 | 29.9 | |
WV | 28.55 | 39.7 | 45.7 | 62.2 | 69.5 | 70.9 | 72.6 | |
WI | 21.79 | 29.0 | 34.1 | 48.9 | 57.1 | 58.4 | 60.4 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 68.97 | 78.1 | 83.8 | 89.3 | 91.1 | 91.5 | 91.8 | |
AK | 0.00 | 0.0 | 0.1 | 2.6 | 14.2 | 21.4 | 31.4 | |
AZ | 5.58 | 11.0 | 17.1 | 36.6 | 53.0 | 58.5 | 65.9 | |
AR | 64.40 | 74.4 | 80.0 | 87.0 | 90.4 | 90.8 | 91.4 | |
CA | 0.53 | 1.0 | 1.6 | 5.3 | 13.0 | 16.8 | 23.2 | |
CO | 0.00 | 0.0 | 0.0 | 0.1 | 0.9 | 1.8 | 3.2 | |
CT | 30.81 | 44.1 | 54.9 | 72.7 | 82.7 | 85.1 | 87.5 | |
DC | 57.47 | 68.2 | 75.2 | 83.9 | 88.4 | 89.8 | 90.5 | |
DE | 43.92 | 56.5 | 65.5 | 78.8 | 85.8 | 87.9 | 89.2 | |
FL | 87.99 | 90.5 | 91.3 | 91.8 | 92.0 | 92.0 | 92.0 | |
GA | 52.29 | 64.2 | 73.5 | 84.6 | 89.1 | 90.2 | 91.0 | |
HI | 69.09 | 75.0 | 77.8 | 79.3 | 79.5 | 79.5 | 79.5 | |
ID | 0.00 | 0.0 | 0.1 | 1.2 | 5.1 | 7.8 | 13.2 | |
IL | 40.24 | 53.9 | 63.6 | 77.9 | 85.8 | 87.2 | 89.1 | |
IN | 34.83 | 49.2 | 60.5 | 77.0 | 85.7 | 87.3 | 89.2 | |
IA | 32.76 | 45.4 | 55.1 | 71.7 | 82.4 | 84.6 | 87.4 | |
KS | 38.80 | 48.9 | 56.5 | 69.1 | 78.8 | 81.4 | 84.3 | |
KY | 48.53 | 62.6 | 72.8 | 84.4 | 89.4 | 90.3 | 91.1 | |
LA | 86.19 | 89.3 | 90.6 | 91.5 | 91.9 | 91.9 | 92.0 | |
ME | 14.84 | 24.9 | 36.2 | 59.3 | 74.2 | 77.7 | 82.4 | |
MD | 40.62 | 53.9 | 63.4 | 77.7 | 85.3 | 87.5 | 89.0 | |
MA | 23.51 | 35.2 | 46.1 | 65.8 | 78.2 | 81.2 | 84.6 | |
MI | 18.87 | 30.2 | 41.2 | 63.3 | 77.6 | 80.4 | 84.6 | |
MN | 20.39 | 31.1 | 41.2 | 61.9 | 75.9 | 78.8 | 83.0 | |
MS | 77.58 | 84.3 | 87.5 | 90.5 | 91.6 | 91.8 | 91.9 | |
MO | 49.41 | 61.8 | 70.7 | 81.5 | 87.8 | 89.0 | 90.3 | |
MT | 0.02 | 0.1 | 0.3 | 3.0 | 10.0 | 14.7 | 22.8 | |
NE | 26.42 | 36.5 | 44.8 | 60.5 | 72.4 | 75.7 | 80.0 | |
NV | 0.27 | 0.9 | 2.2 | 11.2 | 27.0 | 33.0 | 43.0 | |
NH | 16.40 | 27.0 | 38.7 | 61.8 | 76.4 | 79.7 | 83.8 | |
NJ | 35.97 | 49.0 | 58.9 | 74.9 | 83.6 | 86.1 | 88.0 | |
NM | 0.01 | 0.0 | 0.0 | 0.1 | 1.4 | 2.3 | 4.2 | |
NY | 28.93 | 41.8 | 52.7 | 71.4 | 82.0 | 84.5 | 87.1 | |
NC | 46.99 | 59.3 | 69.1 | 82.0 | 87.7 | 89.3 | 90.3 | |
ND | 3.65 | 6.8 | 11.3 | 27.0 | 44.5 | 50.9 | 60.1 | |
OH | 27.89 | 41.4 | 53.3 | 72.6 | 83.3 | 85.4 | 87.9 | |
OK | 52.53 | 59.8 | 64.6 | 73.4 | 80.6 | 82.3 | 84.7 | |
OR | 5.27 | 10.2 | 17.0 | 37.7 | 55.0 | 60.9 | 68.8 | |
PA | 30.60 | 44.0 | 55.0 | 73.3 | 83.4 | 85.8 | 88.0 | |
RI | 19.13 | 29.5 | 40.0 | 60.0 | 74.0 | 77.5 | 81.8 | |
SC | 65.51 | 74.3 | 80.8 | 87.7 | 90.3 | 91.0 | 91.4 | |
SD | 8.57 | 13.6 | 19.3 | 34.8 | 49.7 | 54.9 | 62.7 | |
TN | 52.68 | 65.8 | 75.5 | 86.0 | 90.1 | 90.8 | 91.4 | |
TX | 67.65 | 70.3 | 71.7 | 74.8 | 78.1 | 78.9 | 80.4 | |
UT | 0.00 | 0.0 | 0.0 | 0.1 | 3.2 | 5.6 | 11.5 | |
VT | 10.96 | 19.4 | 30.6 | 54.2 | 71.1 | 74.8 | 80.4 | |
VA | 42.49 | 54.7 | 64.0 | 78.2 | 85.6 | 87.7 | 89.2 | |
WA | 2.32 | 5.6 | 11.9 | 31.9 | 48.6 | 54.4 | 62.8 | |
WV | 28.55 | 43.1 | 55.6 | 74.6 | 84.5 | 86.8 | 88.7 | |
WI | 21.79 | 33.0 | 43.1 | 63.3 | 76.9 | 79.7 | 83.8 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 1.3 | 2.4 | 4.9 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 6.88 | 14.3 | 17.7 | 16.8 | 16.1 | 17.1 | 14.5 | |
AK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AZ | 0.09 | 0.3 | 0.4 | 0.4 | 0.4 | 0.4 | 0.4 | |
AR | 10.06 | 19.3 | 22.2 | 21.7 | 20.8 | 21.4 | 19.4 | |
CA | 0.06 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 4.15 | 8.8 | 10.7 | 10.7 | 10.1 | 10.4 | 9.3 | |
DC | 8.71 | 17.1 | 19.1 | 19.5 | 18.7 | 18.3 | 16.9 | |
DE | 4.44 | 10.5 | 11.8 | 12.2 | 11.7 | 11.1 | 10.2 | |
FL | 11.02 | 22.0 | 25.9 | 25.6 | 25.1 | 24.8 | 22.7 | |
GA | 2.57 | 5.7 | 6.8 | 6.7 | 6.5 | 6.7 | 5.6 | |
HI | 1.58 | 6.9 | 7.8 | 8.5 | 8.9 | 7.8 | 7.1 | |
ID | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IL | 8.58 | 16.9 | 18.8 | 18.8 | 17.8 | 18.3 | 16.6 | |
IN | 5.21 | 12.3 | 13.4 | 13.7 | 13.1 | 13.1 | 11.7 | |
IA | 6.03 | 11.5 | 12.6 | 12.7 | 11.9 | 12.5 | 11.4 | |
KS | 4.92 | 8.5 | 9.6 | 9.5 | 9.1 | 9.3 | 8.5 | |
KY | 6.93 | 16.1 | 17.4 | 17.4 | 16.8 | 16.9 | 14.8 | |
LA | 24.46 | 38.7 | 43.9 | 41.5 | 41.1 | 42.5 | 38.7 | |
ME | 1.63 | 3.9 | 5.2 | 5.0 | 4.8 | 5.3 | 4.4 | |
MD | 3.61 | 8.5 | 9.6 | 10.0 | 9.6 | 9.2 | 8.4 | |
MA | 2.71 | 6.0 | 7.7 | 7.7 | 7.1 | 7.6 | 6.7 | |
MI | 1.79 | 5.0 | 5.9 | 6.0 | 5.9 | 5.8 | 5.1 | |
MN | 2.96 | 6.1 | 7.3 | 7.6 | 6.9 | 7.2 | 6.6 | |
MS | 12.81 | 24.4 | 29.3 | 27.3 | 26.5 | 28.3 | 24.4 | |
MO | 8.45 | 16.3 | 18.2 | 18.4 | 17.4 | 17.6 | 16.2 | |
MT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NE | 3.44 | 6.5 | 7.4 | 7.3 | 6.8 | 7.3 | 6.5 | |
NV | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NH | 1.48 | 3.7 | 5.2 | 4.9 | 4.6 | 5.2 | 4.3 | |
NJ | 4.02 | 9.3 | 10.5 | 10.8 | 10.4 | 10.0 | 9.2 | |
NM | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NY | 3.46 | 7.7 | 9.1 | 9.1 | 8.7 | 8.7 | 7.8 | |
NC | 4.35 | 8.9 | 9.7 | 9.9 | 9.8 | 9.4 | 8.4 | |
ND | 0.20 | 0.5 | 0.6 | 0.7 | 0.6 | 0.6 | 0.6 | |
OH | 2.56 | 7.3 | 8.4 | 8.5 | 8.4 | 8.1 | 7.1 | |
OK | 5.26 | 7.9 | 8.7 | 8.6 | 8.5 | 8.4 | 7.9 | |
OR | 0.37 | 1.0 | 1.3 | 1.3 | 1.2 | 1.3 | 1.1 | |
PA | 2.77 | 7.2 | 8.2 | 8.3 | 8.3 | 7.9 | 7.1 | |
RI | 1.47 | 3.4 | 4.4 | 4.5 | 4.2 | 4.3 | 3.9 | |
SC | 7.95 | 14.7 | 16.3 | 16.5 | 16.1 | 15.8 | 14.4 | |
SD | 0.76 | 1.6 | 1.9 | 1.9 | 1.7 | 1.8 | 1.6 | |
TN | 6.56 | 13.4 | 15.0 | 14.7 | 14.3 | 14.7 | 12.8 | |
TX | 9.83 | 14.7 | 16.3 | 15.9 | 15.8 | 15.8 | 14.9 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 0.95 | 2.4 | 3.5 | 3.2 | 3.1 | 3.6 | 2.8 | |
VA | 4.69 | 10.3 | 11.4 | 11.8 | 11.4 | 10.9 | 9.9 | |
WA | 0.07 | 0.3 | 0.5 | 0.4 | 0.4 | 0.5 | 0.4 | |
WV | 1.75 | 5.8 | 6.5 | 6.7 | 6.6 | 6.4 | 5.4 | |
WI | 3.02 | 6.6 | 7.7 | 8.0 | 7.4 | 7.6 | 6.9 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 6.88 | 16.4 | 23.6 | 31.8 | 36.8 | 37.7 | 39.4 | |
AK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AZ | 0.09 | 0.3 | 0.6 | 1.3 | 2.0 | 2.3 | 2.7 | |
AR | 10.06 | 20.8 | 27.6 | 36.1 | 40.3 | 40.8 | 42.7 | |
CA | 0.06 | 0.1 | 0.2 | 0.2 | 0.3 | 0.3 | 0.3 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 4.15 | 8.7 | 13.6 | 18.4 | 22.7 | 23.7 | 24.2 | |
DC | 8.71 | 17.8 | 24.2 | 32.2 | 37.1 | 37.4 | 38.7 | |
DE | 4.44 | 10.8 | 15.8 | 22.7 | 27.3 | 27.4 | 28.8 | |
FL | 11.02 | 23.8 | 34.4 | 44.7 | 50.1 | 51.2 | 52.6 | |
GA | 2.57 | 6.4 | 10.1 | 15.7 | 19.5 | 20.0 | 21.5 | |
HI | 1.58 | 5.9 | 10.5 | 18.9 | 24.8 | 25.0 | 26.8 | |
ID | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IL | 8.58 | 17.0 | 23.7 | 31.1 | 34.9 | 35.6 | 37.1 | |
IN | 5.21 | 12.2 | 17.6 | 25.1 | 29.0 | 29.4 | 31.3 | |
IA | 6.03 | 11.5 | 16.5 | 23.7 | 27.0 | 27.4 | 29.2 | |
KS | 4.92 | 8.9 | 12.1 | 16.5 | 19.2 | 19.7 | 20.9 | |
KY | 6.93 | 16.3 | 22.9 | 30.9 | 35.7 | 36.1 | 37.9 | |
LA | 24.46 | 42.2 | 50.8 | 58.7 | 62.8 | 63.6 | 63.9 | |
ME | 1.63 | 3.9 | 6.9 | 10.3 | 13.4 | 14.3 | 15.1 | |
MD | 3.61 | 8.8 | 13.2 | 19.8 | 24.3 | 24.4 | 26.0 | |
MA | 2.71 | 6.0 | 9.9 | 14.1 | 17.6 | 18.6 | 19.3 | |
MI | 1.79 | 4.9 | 7.9 | 13.0 | 16.0 | 16.3 | 17.9 | |
MN | 2.96 | 6.4 | 10.1 | 16.3 | 18.8 | 19.4 | 21.1 | |
MS | 12.81 | 27.4 | 36.0 | 45.0 | 50.2 | 50.7 | 52.2 | |
MO | 8.45 | 16.9 | 23.0 | 30.8 | 34.6 | 35.2 | 36.9 | |
MT | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.1 | |
NE | 3.44 | 6.8 | 9.9 | 14.4 | 16.8 | 17.5 | 18.5 | |
NV | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.2 | |
NH | 1.48 | 3.7 | 7.0 | 10.5 | 13.6 | 14.6 | 15.4 | |
NJ | 4.02 | 9.3 | 13.8 | 19.7 | 24.2 | 24.4 | 25.6 | |
NM | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NY | 3.46 | 7.6 | 11.8 | 16.8 | 20.7 | 21.3 | 22.3 | |
NC | 4.35 | 9.2 | 13.4 | 19.3 | 23.6 | 23.7 | 25.3 | |
ND | 0.20 | 0.5 | 1.0 | 2.0 | 2.6 | 3.0 | 3.3 | |
OH | 2.56 | 7.5 | 11.9 | 18.3 | 22.4 | 22.7 | 24.3 | |
OK | 5.26 | 8.4 | 10.5 | 13.4 | 15.5 | 15.8 | 16.5 | |
OR | 0.37 | 0.9 | 1.8 | 3.4 | 5.0 | 5.4 | 6.1 | |
PA | 2.77 | 7.3 | 11.4 | 17.4 | 22.1 | 22.1 | 23.6 | |
RI | 1.47 | 3.4 | 5.9 | 8.9 | 11.3 | 12.2 | 12.8 | |
SC | 7.95 | 15.6 | 21.4 | 28.5 | 33.0 | 33.3 | 35.3 | |
SD | 0.76 | 1.6 | 2.6 | 4.4 | 5.5 | 5.9 | 6.3 | |
TN | 6.56 | 14.2 | 19.7 | 27.1 | 31.9 | 32.3 | 34.1 | |
TX | 9.83 | 15.8 | 19.1 | 22.2 | 23.6 | 24.2 | 24.3 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 0.95 | 2.4 | 4.8 | 7.5 | 10.0 | 11.1 | 11.5 | |
VA | 4.69 | 10.6 | 15.2 | 21.5 | 26.0 | 26.1 | 27.5 | |
WA | 0.07 | 0.3 | 0.8 | 1.9 | 3.3 | 3.9 | 4.4 | |
WV | 1.75 | 5.9 | 10.1 | 16.2 | 20.6 | 20.8 | 22.4 | |
WI | 3.02 | 6.5 | 10.1 | 15.7 | 18.3 | 18.9 | 20.5 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 6.88 | 14.7 | 20.5 | 38.9 | 50.2 | 52.2 | 55.3 | |
AK | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.4 | |
AZ | 0.09 | 0.2 | 0.5 | 1.8 | 4.2 | 5.2 | 6.3 | |
AR | 10.06 | 19.7 | 26.2 | 42.3 | 52.3 | 54.9 | 56.5 | |
CA | 0.06 | 0.1 | 0.1 | 0.3 | 0.5 | 0.6 | 0.8 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 4.15 | 7.8 | 11.1 | 22.8 | 32.1 | 34.3 | 36.8 | |
DC | 8.71 | 15.8 | 20.7 | 37.4 | 47.8 | 49.6 | 52.0 | |
DE | 4.44 | 9.3 | 12.8 | 27.6 | 37.6 | 39.2 | 42.0 | |
FL | 11.02 | 22.4 | 30.5 | 53.5 | 65.6 | 66.7 | 69.3 | |
GA | 2.57 | 5.8 | 8.2 | 20.5 | 30.5 | 31.8 | 35.4 | |
HI | 1.58 | 5.2 | 9.1 | 26.0 | 38.8 | 40.8 | 43.8 | |
ID | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | |
IL | 8.58 | 14.5 | 19.3 | 35.2 | 44.2 | 46.1 | 48.8 | |
IN | 5.21 | 10.0 | 13.7 | 29.5 | 38.8 | 40.7 | 44.4 | |
IA | 6.03 | 10.2 | 13.7 | 25.7 | 34.6 | 35.9 | 38.7 | |
KS | 4.92 | 8.2 | 10.6 | 18.2 | 24.9 | 26.4 | 28.1 | |
KY | 6.93 | 14.4 | 19.6 | 36.6 | 47.4 | 49.9 | 52.5 | |
LA | 24.46 | 40.3 | 47.3 | 65.2 | 73.8 | 74.6 | 75.8 | |
ME | 1.63 | 3.3 | 5.3 | 13.7 | 21.0 | 23.6 | 26.4 | |
MD | 3.61 | 7.6 | 10.6 | 24.4 | 34.5 | 36.3 | 39.3 | |
MA | 2.71 | 5.2 | 7.9 | 17.7 | 25.7 | 28.1 | 30.9 | |
MI | 1.79 | 4.2 | 6.2 | 16.3 | 24.5 | 26.3 | 29.6 | |
MN | 2.96 | 5.4 | 8.1 | 18.7 | 26.8 | 28.3 | 31.4 | |
MS | 12.81 | 25.3 | 33.0 | 52.3 | 63.1 | 64.5 | 66.9 | |
MO | 8.45 | 15.4 | 20.7 | 34.4 | 44.4 | 46.8 | 48.2 | |
MT | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.4 | |
NE | 3.44 | 6.0 | 8.1 | 16.1 | 22.9 | 23.9 | 26.5 | |
NV | 0.00 | 0.0 | 0.0 | 0.1 | 0.3 | 0.5 | 0.9 | |
NH | 1.48 | 3.2 | 5.4 | 14.0 | 21.7 | 24.2 | 27.2 | |
NJ | 4.02 | 8.2 | 11.2 | 24.5 | 34.1 | 35.8 | 38.6 | |
NM | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NY | 3.46 | 6.8 | 9.6 | 21.3 | 30.3 | 32.3 | 35.1 | |
NC | 4.35 | 8.4 | 10.9 | 23.8 | 33.7 | 35.2 | 38.6 | |
ND | 0.20 | 0.4 | 0.7 | 2.6 | 4.9 | 5.4 | 7.0 | |
OH | 2.56 | 6.3 | 9.1 | 22.8 | 32.5 | 34.5 | 37.8 | |
OK | 5.26 | 7.9 | 9.6 | 15.0 | 19.5 | 20.8 | 21.9 | |
OR | 0.37 | 0.8 | 1.2 | 4.5 | 8.7 | 10.0 | 12.2 | |
PA | 2.77 | 6.2 | 8.9 | 22.0 | 32.2 | 34.1 | 37.2 | |
RI | 1.47 | 2.9 | 4.5 | 11.4 | 17.5 | 19.5 | 21.9 | |
SC | 7.95 | 14.6 | 18.5 | 34.8 | 45.0 | 46.5 | 50.2 | |
SD | 0.76 | 1.4 | 2.0 | 5.4 | 8.8 | 9.2 | 11.1 | |
TN | 6.56 | 12.8 | 17.8 | 32.6 | 44.0 | 46.8 | 49.1 | |
TX | 9.83 | 15.1 | 18.1 | 24.8 | 28.6 | 29.4 | 29.8 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 0.95 | 2.0 | 3.7 | 10.4 | 17.1 | 19.6 | 22.2 | |
VA | 4.69 | 9.2 | 12.4 | 25.7 | 35.2 | 36.9 | 39.8 | |
WA | 0.07 | 0.2 | 0.5 | 2.8 | 6.3 | 7.8 | 9.8 | |
WV | 1.75 | 4.8 | 7.4 | 20.3 | 30.4 | 32.6 | 35.9 | |
WI | 3.02 | 5.7 | 8.3 | 18.9 | 26.8 | 28.5 | 31.6 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 6.88 | 17.0 | 30.3 | 58.7 | 76.5 | 80.8 | 85.4 | |
AK | 0.00 | 0.0 | 0.0 | 0.2 | 3.9 | 7.8 | 15.4 | |
AZ | 0.09 | 0.4 | 1.0 | 8.3 | 21.7 | 28.1 | 38.3 | |
AR | 10.06 | 22.3 | 34.5 | 59.9 | 76.1 | 79.9 | 84.5 | |
CA | 0.06 | 0.1 | 0.2 | 0.8 | 2.9 | 4.4 | 7.3 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.4 | 0.7 | |
CT | 4.15 | 9.3 | 18.4 | 41.5 | 62.6 | 68.2 | 75.2 | |
DC | 8.71 | 18.7 | 30.1 | 55.8 | 73.0 | 77.7 | 82.0 | |
DE | 4.44 | 11.6 | 21.3 | 46.9 | 66.4 | 72.2 | 78.2 | |
FL | 11.02 | 26.2 | 43.8 | 73.3 | 85.2 | 87.6 | 89.7 | |
GA | 2.57 | 6.9 | 14.1 | 39.2 | 61.8 | 68.7 | 76.5 | |
HI | 1.58 | 6.8 | 16.9 | 48.3 | 67.2 | 71.0 | 75.9 | |
ID | 0.00 | 0.0 | 0.0 | 0.1 | 1.4 | 2.8 | 4.7 | |
IL | 8.58 | 18.3 | 29.4 | 52.8 | 70.4 | 74.8 | 80.2 | |
IN | 5.21 | 13.0 | 23.0 | 48.4 | 68.3 | 73.6 | 79.5 | |
IA | 6.03 | 12.8 | 20.9 | 42.7 | 61.8 | 67.7 | 74.5 | |
KS | 4.92 | 9.5 | 15.0 | 31.4 | 48.9 | 55.0 | 62.5 | |
KY | 6.93 | 16.8 | 29.0 | 55.9 | 75.0 | 79.9 | 84.4 | |
LA | 24.46 | 43.5 | 56.9 | 77.5 | 86.6 | 88.2 | 89.7 | |
ME | 1.63 | 4.1 | 9.9 | 29.5 | 50.9 | 57.6 | 66.9 | |
MD | 3.61 | 9.4 | 17.8 | 43.0 | 64.0 | 70.2 | 76.6 | |
MA | 2.71 | 6.4 | 13.6 | 34.5 | 55.7 | 61.8 | 69.9 | |
MI | 1.79 | 5.4 | 11.2 | 32.2 | 54.1 | 60.6 | 69.4 | |
MN | 2.96 | 7.1 | 13.4 | 33.9 | 54.0 | 60.2 | 68.4 | |
MS | 12.81 | 28.5 | 43.5 | 69.4 | 82.8 | 85.4 | 88.3 | |
MO | 8.45 | 18.0 | 29.3 | 52.9 | 71.0 | 75.9 | 81.0 | |
MT | 0.00 | 0.0 | 0.0 | 0.3 | 2.8 | 5.2 | 9.2 | |
NE | 3.44 | 7.4 | 12.7 | 29.6 | 46.9 | 53.4 | 61.3 | |
NV | 0.00 | 0.0 | 0.0 | 1.0 | 6.8 | 10.4 | 17.4 | |
NH | 1.48 | 4.0 | 10.1 | 30.1 | 52.3 | 59.1 | 68.2 | |
NJ | 4.02 | 10.0 | 18.9 | 43.0 | 63.3 | 69.2 | 75.9 | |
NM | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.5 | 0.8 | |
NY | 3.46 | 8.2 | 16.3 | 39.5 | 60.8 | 66.7 | 74.3 | |
NC | 4.35 | 10.0 | 17.6 | 41.9 | 63.7 | 70.4 | 77.3 | |
ND | 0.20 | 0.6 | 1.5 | 7.7 | 20.6 | 27.0 | 37.0 | |
OH | 2.56 | 7.9 | 16.1 | 40.8 | 62.6 | 68.8 | 76.1 | |
OK | 5.26 | 8.7 | 12.5 | 23.9 | 37.5 | 42.6 | 49.9 | |
OR | 0.37 | 1.1 | 2.5 | 12.3 | 28.7 | 36.0 | 46.4 | |
PA | 2.77 | 7.7 | 15.7 | 40.1 | 62.1 | 68.4 | 75.6 | |
RI | 1.47 | 3.7 | 8.6 | 25.9 | 46.8 | 53.5 | 62.6 | |
SC | 7.95 | 16.8 | 27.3 | 53.5 | 72.0 | 77.2 | 82.4 | |
SD | 0.76 | 1.8 | 3.6 | 12.1 | 25.0 | 31.0 | 39.7 | |
TN | 6.56 | 14.6 | 25.5 | 52.5 | 73.3 | 78.7 | 83.9 | |
TX | 9.83 | 16.4 | 21.6 | 30.8 | 37.5 | 39.7 | 42.7 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 1.0 | 1.8 | 3.2 | |
VT | 0.95 | 2.5 | 7.3 | 24.8 | 46.6 | 53.8 | 63.6 | |
VA | 4.69 | 11.4 | 19.8 | 43.5 | 63.8 | 70.1 | 76.6 | |
WA | 0.07 | 0.3 | 1.2 | 10.4 | 26.0 | 33.4 | 43.1 | |
WV | 1.75 | 6.2 | 13.7 | 38.2 | 61.5 | 68.3 | 75.8 | |
WI | 3.02 | 7.5 | 13.9 | 34.4 | 54.5 | 60.6 | 68.8 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.3 | 0.8 | 1.3 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AZ | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AR | 0.01 | 0.1 | 0.1 | 0.2 | 0.2 | 0.2 | 0.2 | |
CA | 0.01 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 0.11 | 0.4 | 0.5 | 0.6 | 0.6 | 0.6 | 0.6 | |
DC | 0.04 | 0.2 | 0.3 | 0.3 | 0.3 | 0.3 | 0.3 | |
DE | 0.01 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | |
FL | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
GA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
HI | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
ID | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IL | 0.17 | 0.8 | 1.2 | 1.3 | 1.3 | 1.3 | 1.1 | |
IN | 0.05 | 0.3 | 0.5 | 0.5 | 0.6 | 0.5 | 0.4 | |
IA | 0.18 | 0.6 | 0.8 | 0.9 | 0.8 | 0.8 | 0.7 | |
KS | 0.06 | 0.2 | 0.2 | 0.3 | 0.3 | 0.2 | 0.2 | |
KY | 0.02 | 0.2 | 0.3 | 0.4 | 0.4 | 0.4 | 0.3 | |
LA | 0.00 | 0.0 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | |
ME | 0.05 | 0.2 | 0.3 | 0.3 | 0.3 | 0.4 | 0.3 | |
MD | 0.01 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | |
MA | 0.08 | 0.2 | 0.4 | 0.4 | 0.4 | 0.4 | 0.4 | |
MI | 0.01 | 0.1 | 0.1 | 0.2 | 0.2 | 0.2 | 0.1 | |
MN | 0.07 | 0.3 | 0.4 | 0.5 | 0.4 | 0.4 | 0.4 | |
MS | 0.00 | 0.0 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | |
MO | 0.10 | 0.4 | 0.6 | 0.7 | 0.7 | 0.6 | 0.6 | |
MT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NE | 0.06 | 0.2 | 0.2 | 0.3 | 0.3 | 0.3 | 0.2 | |
NV | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NH | 0.03 | 0.1 | 0.2 | 0.2 | 0.2 | 0.3 | 0.2 | |
NJ | 0.04 | 0.2 | 0.3 | 0.3 | 0.3 | 0.3 | 0.3 | |
NM | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NY | 0.07 | 0.3 | 0.4 | 0.4 | 0.4 | 0.4 | 0.3 | |
NC | 0.05 | 0.1 | 0.1 | 0.2 | 0.2 | 0.1 | 0.1 | |
ND | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
OH | 0.01 | 0.1 | 0.1 | 0.2 | 0.2 | 0.2 | 0.1 | |
OK | 0.02 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | |
OR | 0.00 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.0 | |
PA | 0.02 | 0.1 | 0.1 | 0.2 | 0.2 | 0.2 | 0.1 | |
RI | 0.02 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | |
SC | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
SD | 0.01 | 0.0 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | |
TN | 0.01 | 0.1 | 0.1 | 0.2 | 0.2 | 0.2 | 0.1 | |
TX | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 0.02 | 0.1 | 0.2 | 0.1 | 0.2 | 0.2 | 0.1 | |
VA | 0.01 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | |
WA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
WV | 0.00 | 0.0 | 0.0 | 0.1 | 0.1 | 0.1 | 0.0 | |
WI | 0.05 | 0.2 | 0.3 | 0.4 | 0.4 | 0.4 | 0.3 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 0.00 | 0.0 | 0.1 | 0.8 | 1.8 | 2.0 | 2.6 | |
AK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AZ | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | |
AR | 0.01 | 0.1 | 0.4 | 2.1 | 3.8 | 4.2 | 5.2 | |
CA | 0.01 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 0.11 | 0.4 | 0.9 | 2.0 | 3.1 | 3.6 | 4.0 | |
DC | 0.04 | 0.2 | 0.6 | 2.0 | 3.5 | 3.7 | 4.6 | |
DE | 0.01 | 0.1 | 0.2 | 0.8 | 1.7 | 1.8 | 2.4 | |
FL | 0.00 | 0.0 | 0.1 | 0.3 | 0.7 | 0.9 | 1.4 | |
GA | 0.00 | 0.0 | 0.0 | 0.1 | 0.4 | 0.5 | 0.7 | |
HI | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.4 | 0.7 | |
ID | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IL | 0.17 | 1.0 | 2.8 | 6.9 | 9.6 | 10.5 | 11.5 | |
IN | 0.05 | 0.4 | 1.3 | 4.0 | 6.2 | 6.6 | 7.7 | |
IA | 0.18 | 0.7 | 1.7 | 4.8 | 6.8 | 7.2 | 8.5 | |
KS | 0.06 | 0.2 | 0.5 | 1.2 | 2.0 | 2.3 | 2.7 | |
KY | 0.02 | 0.3 | 1.2 | 4.0 | 6.4 | 6.7 | 7.7 | |
LA | 0.00 | 0.1 | 0.3 | 1.6 | 3.2 | 3.7 | 4.8 | |
ME | 0.05 | 0.2 | 0.5 | 1.1 | 2.0 | 2.4 | 2.7 | |
MD | 0.01 | 0.1 | 0.2 | 0.9 | 1.8 | 1.9 | 2.5 | |
MA | 0.08 | 0.3 | 0.7 | 1.5 | 2.3 | 2.8 | 3.2 | |
MI | 0.01 | 0.1 | 0.4 | 1.4 | 2.5 | 2.7 | 3.4 | |
MN | 0.07 | 0.3 | 0.9 | 3.1 | 4.5 | 4.9 | 5.9 | |
MS | 0.00 | 0.1 | 0.3 | 1.6 | 3.3 | 3.5 | 4.5 | |
MO | 0.10 | 0.5 | 1.3 | 4.1 | 6.3 | 7.0 | 7.9 | |
MT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NE | 0.06 | 0.2 | 0.5 | 1.5 | 2.4 | 2.7 | 3.1 | |
NV | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NH | 0.03 | 0.1 | 0.4 | 0.9 | 1.7 | 2.2 | 2.4 | |
NJ | 0.04 | 0.2 | 0.5 | 1.3 | 2.3 | 2.5 | 3.1 | |
NM | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NY | 0.07 | 0.3 | 0.6 | 1.5 | 2.4 | 2.8 | 3.2 | |
NC | 0.05 | 0.1 | 0.2 | 0.7 | 1.4 | 1.4 | 1.9 | |
ND | 0.00 | 0.0 | 0.0 | 0.1 | 0.2 | 0.3 | 0.4 | |
OH | 0.01 | 0.1 | 0.5 | 2.1 | 3.9 | 3.9 | 4.7 | |
OK | 0.02 | 0.1 | 0.1 | 0.3 | 0.5 | 0.6 | 0.8 | |
OR | 0.00 | 0.0 | 0.1 | 0.3 | 0.6 | 0.7 | 0.9 | |
PA | 0.02 | 0.1 | 0.3 | 1.3 | 2.5 | 2.6 | 3.3 | |
RI | 0.02 | 0.1 | 0.2 | 0.5 | 0.8 | 1.0 | 1.2 | |
SC | 0.00 | 0.0 | 0.1 | 0.4 | 1.0 | 1.0 | 1.5 | |
SD | 0.01 | 0.0 | 0.1 | 0.4 | 0.6 | 0.7 | 0.9 | |
TN | 0.01 | 0.1 | 0.5 | 2.0 | 3.7 | 3.8 | 4.6 | |
TX | 0.00 | 0.0 | 0.0 | 0.2 | 0.3 | 0.4 | 0.6 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 0.02 | 0.1 | 0.3 | 0.7 | 1.3 | 1.7 | 1.9 | |
VA | 0.01 | 0.1 | 0.2 | 0.9 | 1.8 | 1.9 | 2.5 | |
WA | 0.00 | 0.0 | 0.0 | 0.1 | 0.3 | 0.5 | 0.7 | |
WV | 0.00 | 0.0 | 0.2 | 1.3 | 2.7 | 2.8 | 3.4 | |
WI | 0.05 | 0.3 | 0.7 | 2.3 | 3.4 | 3.9 | 4.7 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 0.00 | 0.0 | 0.0 | 1.6 | 5.8 | 6.5 | 9.1 | |
AK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AZ | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.3 | 0.6 | |
AR | 0.01 | 0.1 | 0.2 | 2.9 | 8.4 | 9.8 | 11.7 | |
CA | 0.01 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.2 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 0.11 | 0.3 | 0.6 | 3.2 | 6.9 | 8.4 | 10.4 | |
DC | 0.04 | 0.2 | 0.4 | 3.1 | 8.2 | 9.4 | 12.0 | |
DE | 0.01 | 0.1 | 0.1 | 1.7 | 5.4 | 6.4 | 8.6 | |
FL | 0.00 | 0.0 | 0.0 | 0.8 | 4.0 | 4.6 | 6.6 | |
GA | 0.00 | 0.0 | 0.0 | 0.3 | 1.8 | 1.9 | 3.5 | |
HI | 0.00 | 0.0 | 0.0 | 0.2 | 1.8 | 2.7 | 3.8 | |
ID | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IL | 0.17 | 0.7 | 1.4 | 7.9 | 14.8 | 16.1 | 19.9 | |
IN | 0.05 | 0.2 | 0.6 | 5.0 | 10.8 | 11.5 | 15.8 | |
IA | 0.18 | 0.5 | 0.9 | 4.4 | 9.2 | 9.9 | 12.5 | |
KS | 0.06 | 0.2 | 0.3 | 1.3 | 3.1 | 3.6 | 4.6 | |
KY | 0.02 | 0.2 | 0.5 | 5.2 | 12.1 | 13.2 | 16.4 | |
LA | 0.00 | 0.0 | 0.2 | 3.0 | 9.5 | 11.1 | 14.1 | |
ME | 0.05 | 0.1 | 0.3 | 1.9 | 4.8 | 6.4 | 8.1 | |
MD | 0.01 | 0.1 | 0.1 | 1.5 | 4.9 | 5.6 | 7.8 | |
MA | 0.08 | 0.2 | 0.4 | 2.3 | 5.4 | 6.9 | 8.8 | |
MI | 0.01 | 0.1 | 0.2 | 1.9 | 5.4 | 6.0 | 8.6 | |
MN | 0.07 | 0.2 | 0.5 | 3.1 | 7.2 | 8.0 | 10.6 | |
MS | 0.00 | 0.0 | 0.2 | 2.9 | 8.9 | 10.4 | 12.9 | |
MO | 0.10 | 0.3 | 0.8 | 4.4 | 10.3 | 11.7 | 13.7 | |
MT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | |
NE | 0.06 | 0.2 | 0.3 | 1.6 | 3.9 | 4.4 | 5.8 | |
NV | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | |
NH | 0.03 | 0.1 | 0.2 | 1.6 | 4.4 | 5.8 | 7.6 | |
NJ | 0.04 | 0.2 | 0.3 | 2.3 | 6.2 | 7.3 | 9.5 | |
NM | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NY | 0.07 | 0.2 | 0.4 | 2.5 | 6.0 | 7.1 | 9.3 | |
NC | 0.05 | 0.1 | 0.2 | 1.1 | 3.5 | 3.8 | 5.8 | |
ND | 0.00 | 0.0 | 0.0 | 0.2 | 0.6 | 0.7 | 1.2 | |
OH | 0.01 | 0.1 | 0.2 | 2.7 | 7.4 | 8.3 | 11.3 | |
OK | 0.02 | 0.1 | 0.1 | 0.3 | 0.9 | 1.1 | 1.4 | |
OR | 0.00 | 0.0 | 0.0 | 0.4 | 1.5 | 1.9 | 2.9 | |
PA | 0.02 | 0.1 | 0.2 | 2.0 | 6.0 | 6.9 | 9.4 | |
RI | 0.02 | 0.0 | 0.1 | 0.8 | 2.3 | 3.0 | 4.2 | |
SC | 0.00 | 0.0 | 0.0 | 0.9 | 3.8 | 4.2 | 6.3 | |
SD | 0.01 | 0.0 | 0.1 | 0.4 | 1.3 | 1.4 | 2.2 | |
TN | 0.01 | 0.1 | 0.3 | 2.7 | 7.5 | 8.5 | 10.8 | |
TX | 0.00 | 0.0 | 0.0 | 0.2 | 1.0 | 1.3 | 1.8 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 0.02 | 0.1 | 0.2 | 1.2 | 3.3 | 4.6 | 6.1 | |
VA | 0.01 | 0.1 | 0.1 | 1.5 | 4.7 | 5.4 | 7.5 | |
WA | 0.00 | 0.0 | 0.0 | 0.2 | 0.8 | 1.2 | 2.1 | |
WV | 0.00 | 0.0 | 0.1 | 1.7 | 5.4 | 6.0 | 8.6 | |
WI | 0.05 | 0.2 | 0.4 | 2.9 | 6.7 | 7.5 | 10.0 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 0.00 | 0.00 | 0.3 | 8.8 | 29.9 | 39.1 | 51.8 | |
AK | 0.00 | 0.00 | 0.00 | 0.00 | 1.4 | 2.5 | 5.9 | |
AZ | 0.00 | 0.00 | 0.00 | 0.8 | 5.8 | 9.2 | 15.5 | |
AR | 0.01 | 0.1 | 0.9 | 13.0 | 36.0 | 44.2 | 56.2 | |
CA | 0.01 | 0.00 | 0.00 | 0.1 | 0.9 | 1.5 | 2.5 | |
CO | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.1 | 0.2 | |
CT | 0.11 | 0.5 | 1.8 | 12.1 | 32.8 | 41.3 | 52.6 | |
DC | 0.04 | 0.3 | 1.2 | 12.7 | 35.6 | 44.9 | 56.5 | |
DE | 0.01 | 0.1 | 0.6 | 9.8 | 30.7 | 39.8 | 51.8 | |
FL | 0.00 | 0.00 | 0.2 | 8.6 | 28.4 | 37.2 | 50.2 | |
GA | 0.00 | 0.00 | 0.00 | 3.0 | 15.8 | 23.5 | 35.2 | |
HI | 0.00 | 0.00 | 0.00 | 3.1 | 18.7 | 27.2 | 36.6 | |
ID | 0.00 | 0.00 | 0.00 | 0.00 | 0.3 | 0.9 | 1.7 | |
IL | 0.17 | 1.1 | 4.2 | 21.9 | 44.0 | 51.8 | 61.1 | |
IN | 0.05 | 0.4 | 2.1 | 16.7 | 39.4 | 47.9 | 58.5 | |
IA | 0.18 | 0.8 | 2.4 | 14.4 | 33.6 | 41.5 | 51.7 | |
KS | 0.06 | 0.2 | 0.7 | 5.2 | 16.7 | 22.4 | 31.0 | |
KY | 0.02 | 0.3 | 1.9 | 17.0 | 41.6 | 50.9 | 62.5 | |
LA | 0.00 | 0.1 | 0.8 | 15.3 | 41.5 | 50.4 | 62.7 | |
ME | 0.05 | 0.2 | 1.1 | 8.7 | 26.0 | 34.1 | 45.4 | |
MD | 0.01 | 0.1 | 0.5 | 8.0 | 27.3 | 36.2 | 48.7 | |
MA | 0.08 | 0.3 | 1.3 | 9.5 | 27.7 | 35.8 | 47.0 | |
MI | 0.01 | 0.1 | 0.7 | 8.8 | 27.0 | 35.2 | 46.6 | |
MN | 0.07 | 0.4 | 1.4 | 11.2 | 29.4 | 37.2 | 47.8 | |
MS | 0.00 | 0.1 | 0.8 | 13.7 | 39.2 | 48.4 | 61.0 | |
MO | 0.10 | 0.5 | 2.1 | 15.7 | 37.6 | 45.9 | 56.4 | |
MT | 0.00 | 0.00 | 0.00 | 0.00 | 0.8 | 1.8 | 3.6 | |
NE | 0.06 | 0.2 | 0.8 | 6.6 | 19.8 | 26.4 | 35.9 | |
NV | 0.00 | 0.00 | 0.00 | 0.00 | 1.7 | 2.9 | 6.5 | |
NH | 0.03 | 0.1 | 0.9 | 8.1 | 25.5 | 33.9 | 45.5 | |
NJ | 0.04 | 0.2 | 1.1 | 10.6 | 31.1 | 39.7 | 51.4 | |
NM | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.1 | 0.1 | |
NY | 0.07 | 0.3 | 1.3 | 10.6 | 30.3 | 38.9 | 50.6 | |
NC | 0.05 | 0.2 | 0.4 | 5.8 | 21.5 | 29.7 | 42.6 | |
ND | 0.00 | 0.00 | 0.1 | 1.2 | 7.2 | 11.1 | 18.6 | |
OH | 0.01 | 0.1 | 0.8 | 11.2 | 32.2 | 41.2 | 53.1 | |
OK | 0.02 | 0.1 | 0.2 | 1.6 | 6.9 | 10.00 | 15.0 | |
OR | 0.00 | 0.00 | 0.1 | 2.4 | 11.0 | 16.6 | 25.7 | |
PA | 0.02 | 0.1 | 0.7 | 9.4 | 30.00 | 38.9 | 51.2 | |
RI | 0.02 | 0.1 | 0.4 | 5.0 | 18.7 | 26.1 | 36.8 | |
SC | 0.00 | 0.00 | 0.2 | 6.7 | 24.4 | 33.2 | 46.3 | |
SD | 0.01 | 0.1 | 0.2 | 2.1 | 8.9 | 13.2 | 20.3 | |
TN | 0.01 | 0.1 | 0.8 | 10.6 | 32.6 | 42.3 | 55.2 | |
TX | 0.00 | 0.00 | 0.1 | 2.3 | 8.7 | 11.7 | 16.1 | |
UT | 0.00 | 0.00 | 0.00 | 0.00 | 0.2 | 1.0 | 1.3 | |
VT | 0.02 | 0.1 | 0.7 | 6.7 | 22.4 | 30.5 | 41.9 | |
VA | 0.01 | 0.1 | 0.5 | 8.2 | 27.0 | 35.6 | 47.9 | |
WA | 0.00 | 0.00 | 0.00 | 1.8 | 10.4 | 16.6 | 25.6 | |
WV | 0.00 | 0.00 | 0.4 | 8.0 | 27.3 | 36.4 | 49.4 | |
WI | 0.05 | 0.3 | 1.3 | 11.0 | 28.7 | 36.6 | 47.0 | |
WY | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.2 | 0.4 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AZ | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AR | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
DC | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
DE | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
FL | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
GA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
HI | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
ID | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IL | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IN | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
KS | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
KY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
LA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
ME | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
MD | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
MA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
MI | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
MN | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
MS | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
MO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
MT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NE | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NV | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NH | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NJ | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NM | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NC | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
ND | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
OH | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
OK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
OR | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
PA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
RI | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
SC | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
SD | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
TN | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
TX | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
WA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
WV | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
WI | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | |
AK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AZ | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AR | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.3 | |
CA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.2 | |
DC | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.2 | |
DE | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
FL | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
GA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
HI | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
ID | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IL | 0.00 | 0.0 | 0.0 | 0.6 | 1.5 | 1.9 | 2.5 | |
IN | 0.00 | 0.0 | 0.0 | 0.3 | 0.9 | 0.9 | 1.4 | |
IA | 0.00 | 0.0 | 0.0 | 0.5 | 1.1 | 1.3 | 1.8 | |
KS | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.2 | |
KY | 0.00 | 0.0 | 0.0 | 0.2 | 0.9 | 0.9 | 1.3 | |
LA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
ME | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.3 | |
MD | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | |
MA | 0.00 | 0.0 | 0.0 | 0.1 | 0.1 | 0.2 | 0.3 | |
MI | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.3 | 0.4 | |
MN | 0.00 | 0.0 | 0.0 | 0.2 | 0.6 | 0.8 | 1.2 | |
MS | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.1 | |
MO | 0.00 | 0.0 | 0.0 | 0.1 | 0.5 | 0.7 | 1.0 | |
MT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NE | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.3 | |
NV | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NH | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.2 | |
NJ | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.1 | |
NM | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NY | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.2 | |
NC | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
ND | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
OH | 0.00 | 0.0 | 0.0 | 0.1 | 0.5 | 0.5 | 0.8 | |
OK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
OR | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | |
PA | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.2 | |
RI | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
SC | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
SD | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | |
TN | 0.00 | 0.0 | 0.0 | 0.0 | 0.3 | 0.3 | 0.5 | |
TX | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.2 | |
VA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | |
WA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | |
WV | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.3 | 0.4 | |
WI | 0.00 | 0.0 | 0.0 | 0.1 | 0.3 | 0.4 | 0.6 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.3 | 1.0 | |
AK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AZ | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
AR | 0.00 | 0.0 | 0.0 | 0.0 | 0.4 | 0.6 | 1.2 | |
CA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CO | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
CT | 0.00 | 0.0 | 0.0 | 0.1 | 0.6 | 0.9 | 1.7 | |
DC | 0.00 | 0.0 | 0.0 | 0.0 | 0.4 | 0.5 | 1.3 | |
DE | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.3 | 1.0 | |
FL | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.4 | |
GA | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.3 | |
HI | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.3 | |
ID | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
IL | 0.00 | 0.0 | 0.0 | 0.5 | 2.4 | 2.8 | 5.1 | |
IN | 0.00 | 0.0 | 0.0 | 0.2 | 1.4 | 1.6 | 3.7 | |
IA | 0.00 | 0.0 | 0.0 | 0.2 | 1.1 | 1.3 | 2.4 | |
KS | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.4 | |
KY | 0.00 | 0.0 | 0.0 | 0.2 | 1.4 | 1.5 | 3.1 | |
LA | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.9 | |
ME | 0.00 | 0.0 | 0.0 | 0.1 | 0.6 | 1.0 | 1.9 | |
MD | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.3 | 0.9 | |
MA | 0.00 | 0.0 | 0.0 | 0.1 | 0.6 | 0.9 | 1.7 | |
MI | 0.00 | 0.0 | 0.0 | 0.0 | 0.6 | 0.7 | 1.7 | |
MN | 0.00 | 0.0 | 0.0 | 0.1 | 0.9 | 1.2 | 2.2 | |
MS | 0.00 | 0.0 | 0.0 | 0.0 | 0.3 | 0.5 | 1.4 | |
MO | 0.00 | 0.0 | 0.0 | 0.1 | 1.0 | 1.4 | 2.1 | |
MT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NE | 0.00 | 0.0 | 0.0 | 0.0 | 0.3 | 0.4 | 0.8 | |
NV | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NH | 0.00 | 0.0 | 0.0 | 0.1 | 0.4 | 0.8 | 1.5 | |
NJ | 0.00 | 0.0 | 0.0 | 0.0 | 0.4 | 0.6 | 1.3 | |
NM | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
NY | 0.00 | 0.0 | 0.0 | 0.1 | 0.5 | 0.7 | 1.5 | |
NC | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.6 | |
ND | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | |
OH | 0.00 | 0.0 | 0.0 | 0.1 | 0.9 | 1.0 | 2.3 | |
OK | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
OR | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.2 | 0.6 | |
PA | 0.00 | 0.0 | 0.0 | 0.0 | 0.5 | 0.6 | 1.5 | |
RI | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.2 | 0.6 | |
SC | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | 0.5 | |
SD | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.3 | |
TN | 0.00 | 0.0 | 0.0 | 0.0 | 0.4 | 0.6 | 1.5 | |
TX | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
UT | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | |
VT | 0.00 | 0.0 | 0.0 | 0.0 | 0.3 | 0.6 | 1.2 | |
VA | 0.00 | 0.0 | 0.0 | 0.0 | 0.2 | 0.2 | 0.8 | |
WA | 0.00 | 0.0 | 0.0 | 0.0 | 0.1 | 0.1 | 0.5 | |
WV | 0.00 | 0.0 | 0.0 | 0.0 | 0.5 | 0.6 | 1.5 | |
WI | 0.00 | 0.0 | 0.0 | 0.1 | 0.8 | 1.0 | 2.0 | |
WY | 0.00 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
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 | 1981-2010 | 2020-2039 | 2040-2059 | 2080-2099 | 2120-2139 | 2140-2159 | 2180-2199 | |
---|---|---|---|---|---|---|---|---|
AL | 0.00 | 0.00 | 0.00 | 0.2 | 5.5 | 10.4 | 19.5 | |
AK | 0.00 | 0.00 | 0.00 | 0.00 | 0.7 | 1.5 | 2.3 | |
AZ | 0.00 | 0.00 | 0.00 | 0.00 | 1.8 | 3.2 | 6.6 | |
AR | 0.00 | 0.00 | 0.00 | 0.6 | 8.9 | 14.0 | 23.3 | |
CA | 0.00 | 0.00 | 0.00 | 0.00 | 0.3 | 0.6 | 1.1 | |
CO | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | |
CT | 0.00 | 0.00 | 0.00 | 1.8 | 11.2 | 18.0 | 28.4 | |
DC | 0.00 | 0.00 | 0.00 | 0.7 | 7.9 | 13.4 | 24.3 | |
DE | 0.00 | 0.00 | 0.00 | 0.6 | 7.1 | 12.4 | 22.5 | |
FL | 0.00 | 0.00 | 0.00 | 0.2 | 4.7 | 9.3 | 17.3 | |
GA | 0.00 | 0.00 | 0.00 | 0.1 | 2.5 | 4.7 | 11.0 | |
HI | 0.00 | 0.00 | 0.00 | 0.00 | 2.4 | 5.0 | 12.0 | |
ID | 0.00 | 0.00 | 0.00 | 0.00 | 0.1 | 0.3 | 0.5 | |
IL | 0.00 | 0.00 | 0.1 | 4.4 | 19.8 | 27.5 | 38.0 | |
IN | 0.00 | 0.00 | 0.00 | 2.4 | 15.3 | 22.9 | 34.3 | |
IA | 0.00 | 0.00 | 0.00 | 2.2 | 12.8 | 19.1 | 28.9 | |
KS | 0.00 | 0.00 | 0.00 | 0.3 | 3.7 | 6.4 | 11.4 | |
KY | 0.00 | 0.00 | 0.00 | 1.7 | 13.0 | 20.4 | 32.7 | |
LA | 0.00 | 0.00 | 0.00 | 0.3 | 6.9 | 12.0 | 21.3 | |
ME | 0.00 | 0.00 | 0.00 | 1.6 | 10.3 | 16.7 | 26.1 | |
MD | 0.00 | 0.00 | 0.00 | 0.5 | 6.2 | 10.8 | 20.1 | |
MA | 0.00 | 0.00 | 0.00 | 1.4 | 9.6 | 15.8 | 25.3 | |
MI | 0.00 | 0.00 | 0.00 | 1.1 | 9.6 | 15.4 | 25.5 | |
MN | 0.00 | 0.00 | 0.00 | 1.9 | 11.9 | 18.2 | 28.3 | |
MS | 0.00 | 0.00 | 0.00 | 0.4 | 7.9 | 13.6 | 23.4 | |
MO | 0.00 | 0.00 | 0.00 | 1.6 | 12.5 | 18.7 | 28.3 | |
MT | 0.00 | 0.00 | 0.00 | 0.00 | 0.3 | 0.8 | 1.4 | |
NE | 0.00 | 0.00 | 0.00 | 0.5 | 5.5 | 9.2 | 16.2 | |
NV | 0.00 | 0.00 | 0.00 | 0.00 | 0.8 | 1.3 | 2.3 | |
NH | 0.00 | 0.00 | 0.00 | 1.2 | 9.3 | 15.4 | 24.9 | |
NJ | 0.00 | 0.00 | 0.00 | 1.0 | 8.9 | 14.8 | 25.1 | |
NM | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | |
NY | 0.00 | 0.00 | 0.00 | 1.4 | 9.8 | 16.0 | 26.1 | |
NC | 0.00 | 0.00 | 0.00 | 0.3 | 4.0 | 7.1 | 14.2 | |
ND | 0.00 | 0.00 | 0.00 | 0.1 | 2.2 | 4.0 | 8.0 | |
OH | 0.00 | 0.00 | 0.00 | 1.3 | 10.7 | 17.4 | 28.6 | |
OK | 0.00 | 0.00 | 0.00 | 0.00 | 0.9 | 1.8 | 3.4 | |
OR | 0.00 | 0.00 | 0.00 | 0.3 | 3.5 | 6.3 | 12.4 | |
PA | 0.00 | 0.00 | 0.00 | 1.0 | 8.8 | 14.5 | 25.2 | |
RI | 0.00 | 0.00 | 0.00 | 0.4 | 5.2 | 9.4 | 16.7 | |
SC | 0.00 | 0.00 | 0.00 | 0.2 | 3.7 | 6.9 | 14.2 | |
SD | 0.00 | 0.00 | 0.00 | 0.2 | 2.4 | 4.4 | 8.5 | |
TN | 0.00 | 0.00 | 0.00 | 0.5 | 7.4 | 12.7 | 22.6 | |
TX | 0.00 | 0.00 | 0.00 | 0.00 | 0.9 | 1.7 | 3.4 | |
UT | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.1 | 0.3 | |
VT | 0.00 | 0.00 | 0.00 | 1.2 | 8.5 | 14.2 | 23.2 | |
VA | 0.00 | 0.00 | 0.00 | 0.4 | 5.8 | 10.2 | 19.1 | |
WA | 0.00 | 0.00 | 0.00 | 0.2 | 3.2 | 6.3 | 13.2 | |
WV | 0.00 | 0.00 | 0.00 | 0.7 | 7.5 | 12.6 | 22.6 | |
WI | 0.00 | 0.00 | 0.00 | 1.8 | 11.2 | 17.3 | 26.8 | |
WY | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment