Skip to content

Instantly share code, notes, and snippets.

@potterzot
Last active August 26, 2015 18:33
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 potterzot/50fd7cb2e6a5421c3d9a to your computer and use it in GitHub Desktop.
Save potterzot/50fd7cb2e6a5421c3d9a to your computer and use it in GitHub Desktop.
Pesticide use map through time

##Pesticide Use Map The USDA surveys pesticide use across time. This is a demonstration of mapping pesticide use, but no effort has been made to interpolate interpolate years between surveys.

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 960px;
height: 700px;
position: relative;
font-size: 10px;
background-color: #eee;
}
div.ddmenu {
float: left;
padding-left: 5px;
padding-top: 0px;
background-color: #fefefe;
}
div.ddmenu > select {
background-color: #fefefe;
}
div.radio {
float: right;
}
div.radio > div {
float: left;
overflow: hidden;
}
label {
padding: 0 1em 0 0;
}
input[type=radio], input.radio {
vertical-align: bottom;
margin: 5px 0 0px 2px;
}
g.title {
text-anchor: middle;
}
text.title {
font-size: 20px;
}
text.subtitle {
font-size: 16px;
}
.states {
fill: none;
stroke: #fff;
stroke-linejoin: round;
}
.base-color { fill: #333; }
.year-box {
fill: #CCC;
stroke: #CCC;
}
.year-box.active { fill: #333; }
.year-text {
text-align: center;
fill: #777;
}
.year-text.active {
fill: #EEE;
}
.back {
fill: rgb(127,0,0);
stroke: #ddd;
}
.legend-title {
text-align: center;
}
.legend-text {
fill: #777;
}
.source {
fill: #777;
}
</style>
<!--JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
</head>
<body></body>
<script>
var title = ["Pounds of ", "Applied per Acre, "];
var source = "Measure 2 Manage Pesticide Use Tables.";
var variables = {
variable: "lbs_per_acre"
, pesticide: "All Pesticides"
, year: "1990"
, crop: "Corn"
, pesticide_types: [
'All Pesticides'
, 'Fungicides'
, 'Herbicides'
, 'Insecticides'
]
, title: "Pounds of All Pesticides Applied per Acre, All Crops"
};
//svg
var width = 960,
height = 500;
margin = {top: 0, right: 15, bottom: 0, left: 15};
//years
var min_year = 1990;
var max_year = 2014;
var year_height = 30;
var year_width = width/(1+max_year - min_year);
//legend
var legend = {
height: 100
, width: 110
, y: 200
, title: "Thousands of Pounds"};
legend.x = width - margin.right - legend.width;
legendFormat = d3.format('2,.1f');
//radio
var radio = {
y: 150
, width: 100
};
radio.x = width - margin.right - radio.width;
//scales
var min = 0;
var max = 4;
var bins = 9;
//other config stuff
var delay = 750;
var base_color = '#333';
//map
var byId = d3.map();
var projection = d3.geo.albersUsa()
.scale(width)
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(projection);
var color = d3.scale.threshold()
.domain(d3.range(min, max, max/bins))
.range(['rgb(255,255,255)', 'rgb(255,247,236)','rgb(254,232,200)','rgb(253,212,158)','rgb(253,187,132)','rgb(252,141,89)','rgb(239,101,72)','rgb(215,48,31)','rgb(179,0,0)','rgb(127,0,0)']);
// create the menus
var menus = d3.select('body').append('div')
.attr('class', 'menu');
// define the svg location
var svg = d3.select("body").append('svg')
.attr("class", 'svg')
.attr("height", height)
.attr("width", width);
// FUNCTIONS
var changeCrop = function(crop) {
// when crop is selected, start over
//
// stop cycling
clearInterval(interval);
// set variables
variables.crop = crop;
variables.year = min_year;
// new domain and legend
color.domain(setDomain());
updateLegend();
// clear the map
clearAll();
// restart
interval = setInterval(run, delay);
}
var changePesticide = function(pesticide) {
// when pesticide radio button is selected, reselect data and start over
//
// stop cycling
clearInterval(interval);
// set variables
variables.pesticide = pesticide;
variables.year = min_year;
// new domain and legend
color.domain(setDomain());
updateLegend();
// restart
interval = setInterval(run, delay);
}
var clearAll = function() {
//blanks the map
svg.select('g.states').selectAll("path")
.data(topojson.feature(window.data.geo, window.data.geo.objects.states).features)
.attr('fill', base_color);
}
var makeDropdownMenu = function(items) {
var menu = menus.append('div')
.attr('class', 'ddmenu')
.append("select")
.on("change", function() {
var selectedIndex = menu.property('selectedIndex');
var data = options[0][selectedIndex].__data__;
changeCrop(data);
});
var options = menu.selectAll('option')
.data(items)
.enter().append('option')
.attr('class', 'ddmenu')
.text(function(d) { return d; });
menu.property('selectedIndex', 0);
}
var makeRadioMenu = function(radios) {
// make the selection for radios
var radioEnter = menus.append('div')
.attr('class', 'radio')
.selectAll('div')
.data(variables.pesticide_types)
.enter().append('div');
radioEnter.append('input')
.attr('class', 'radio')
.attr('type', "radio")
.attr('name', "pesticides")
.attr('value', function(d) { return d; })
.property("checked", function(d, i) { return (i===0); })
.on('change', function(d) { changePesticide(d); });
radioEnter.append('label').text(function(d) { return d; });
}
var mouseover = function(year) {
// on mouseover, highlight just the year and freeze the iteration
clearInterval(interval);
variables.year = year;
paint();
}
var mouseleave = function(year) {
// on leaving, restart the iteration from where we are at
variables.year = year;
interval = setInterval(run, delay);
}
var paint = function() {
// paint the map colors based on variables selected
//
// change the title to reflect pesticide and crop
// and subtitle
variables.title = title[0]+" "+variables.pesticide+" "+title[1]+" "+variables.crop;
d3.select('text.title').text(variables.title);
d3.select('text.subtitle').text(variables.year);
// highlight the year
svg.selectAll('.year-box').classed('active', false);
svg.selectAll('.year-text').classed('active', false);
svg.select('.year-box.y'+variables.year).classed('active', true);
svg.select('.year-text.y'+variables.year).classed('active', true);
// Remove mapped data
window.data.use.forEach(function(d) { byId.remove(d.state_ansi); });
// filter to get new data
var filteredData = window.data.use
.filter(function(d) {
return (d.ai==variables.pesticide && d.year==variables.year && d.crop==variables.crop);
});
// set the data to use
filteredData.forEach(function(d) {
byId.set(+d.state_ansi, +d[variables.variable]);
});
// paint the svg elements
var paint = svg.select("g.states").selectAll("path")
.data(topojson.feature(window.data.geo, window.data.geo.objects.states).features)
.attr("fill", function(d) {
var v = byId.get(d.id);
return (v && variables.year!==String(min_year))
? color(v)
: base_color;
});
svg.select("path.states")
.datum(topojson.mesh(window.data.geo, window.data.geo.objects.states, function(a, b) { return a !== b; }))
.attr("d", path);
// increment the year
variables.year = (+variables.year < max_year)
? String(+variables.year+1)
: String(min_year);
}
var run = function() {
// runs the painting every x seconds
//
// paint the data
paint();
}
var setDomain = function() {
// get the new min and max and step
//
var data = window.data.use
.filter(function(d) {
return (d.crop===variables.crop && d.year==="2014" && d.ai===variables.pesticide); })
.map(function(d) { return d[variables.variable]; });
var domain = d3.range(0, Math.ceil(d3.max(data)), Math.ceil(d3.max(data))/bins);
return domain;
}
var updateLegend = function() {
// Add the legend
var step = (color.domain()[1]-color.domain()[-1])/bins;
var legendBox = svg.select('g.legend-box');
// Flash the legend box
legendBox.select('rect.back').attr('opacity', 1);
legendRows = legendBox.selectAll('g')
.data(color.domain())
legendExit = legendRows.exit().remove();
legendEnter = legendRows.enter().append('g')
.attr('class', 'legend-row')
.attr('transform', function(d, i) { return "translate(0,"+i*legend.height/bins+")"; })
.attr('width', legend.width)
.attr('height', legend.height/bins);
legendEnter.append('rect')
.attr('class', 'legend-color')
.attr('y', 5)
.attr('x', 5)
.attr('width', 20)
.attr('height', legend.height/bins-5)
.attr('fill', function(d) { return color(d); });
legendEnter.append('text')
.attr('class', 'legend-text')
.attr('y', 12)
.attr('x', 30);
// Update
legendRows.select('text')
.transition()
.style('opacity', 0)
.text(function(d, i) {
return (i==bins-1)
? String(legendFormat(d))+" +"
: String(legendFormat(color.domain()[i]))+" - "+String(legendFormat(color.domain()[i+1]));
})
.style('opacity', 1);
//Add a legend row for unsurveyed states
var unsurveyed = legendBox.append('g')
.attr('class', 'legend-row')
.attr('transform', function(d, i) { return "translate(0,"+9*legend.height/bins+")"; })
.attr('width', legend.width)
.attr('height', legend.height/bins);
unsurveyed.append('rect')
.attr('class', 'legend-color base-color')
.attr('y', 5)
.attr('x', 5)
.attr('width', 20)
.attr('height', legend.height/bins-5);
unsurveyed.append('text')
.attr('class', 'legend-text')
.attr('y', 12)
.attr('x', 30)
.text("Not Surveyed");
// Flash the legend box
legendBox.select('rect.back').transition().duration(500).attr('opacity', 0);
}
// helper function to return unique items from an array
var unique = function(arr) {
// returns an array containing only unique values
var o = {}, i, l = arr.length, r = [];
for(i=0; i<l;i+=1) o[arr[i]] = arr[i];
for(i in o) r.push(o[i]);
return r;
}
function ready(error, us, use) {
// add total for all pesticides and total for all crops
window.data = {
geo: us
, use: use
};
// set some starting variable values
var pesticides = unique(
use.map(function(d) { return d.ai_type; })
.sort());
variables.crops = unique(use
.map(function(d) { return d.crop; })
.sort());
// add the menus
makeDropdownMenu(variables.crops);
makeRadioMenu(pesticides);
// draw the base map
svg.append("g")
.attr("class", "states")
.selectAll("path")
.data(topojson.feature(us, us.objects.states).features)
.enter().append("path")
.attr('fill', base_color)
.attr("d", path);
svg.append("path")
.datum(topojson.mesh(us, us.objects.states, function(a, b) { return a !== b; }))
.attr("class", "states")
.attr("d", path);
// Add the year boxes
yearRow = svg.append("g")
.attr("class", "years")
.attr("transform", "translate(0,"+(height-year_height)+")")
.selectAll("rect")
.data(d3.range(min_year, max_year+1))
.enter();
yearRow.append('rect')
.attr('class', function(d) { return 'year-box y' + d; })
.attr('height', year_height)
.attr('width', year_width)
.attr('y', 0)
.attr('x', function(d,i) { return i*year_width; })
.on('mouseover', function(d) { mouseover(d); })
.on('mouseleave', function(d) { mouseleave(d); });
yearRow.append('text')
.attr('class', function(d) { return 'year-text y' + d; })
.attr('y', 5+year_height/2)
.attr('x', function(d,i) { return 6+i*year_width; })
.text(function(d) { return d; })
.on('mouseover', function(d) { mouseover(d); })
.on('mouseleave', function(d) { mouseleave(d); });
// Add a legend
var legendBox = svg.append('g')
.attr('class', 'legend-box')
.attr('transform', "translate("+legend.x+","+legend.y+")");
legendBox.append('rect')
.attr('class', 'back')
.attr('x', 0)
.attr('y', -15)
.attr('height', legend.height+35)
.attr('width', legend.width)
.attr('opacity', 0);
legendBox.append('text')
.attr('class', 'legend-title')
.attr('x', 0)
.attr('y', 0)
.text(legend.title);
updateLegend();
//Add a title
var title = svg.append('g')
.attr('class', 'title')
.attr('transform', "translate("+width/2+","+30+")");
title.append('text')
.attr('class', 'title')
.text(variables.title);
title.append('text')
.attr('class', 'subtitle')
.attr('y', 20)
.text(min_year);
//Add a source
var src = svg.append('g')
.attr('class', 'source')
.attr('transform', "translate("+(width-240)+","+(height-32)+")")
src.append('text')
.text("Source: "+source);
interval = setInterval(run, delay);
}
queue()
.defer(d3.json, "./us.json")
.defer(d3.csv, "./use_summary.csv")
.await(function(error, file1, file2) { ready(error, file1, file2); });
</script>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
We can make this file beautiful and searchable if this error is corrected: It looks like row 2791 should actually have 12 columns, instead of 11. in line 2790.
crop,year,state,state_ansi,ai,ai_sort_order,pc_code,ai_type_abbr,application_lbs,lbs_per_acre,total_acres,surveyed_acres
Corn,2014,COLORADO,08,"All Pesticides",8,TA,I,3.257,2.44887218045113,1.33,1.33
Corn,2014,COLORADO,08,Herbicides,8,TH,H,3.176,2.38796992481203,1.33,1.33
Corn,2014,COLORADO,08,Insecticides,8,TI,I,0.081,0.0609022556390977,1.33,1.33
Corn,2013,COLORADO,08,"All Pesticides",8,TA,I,3.257,2.44887218045113,1.33,1.33
Corn,2013,COLORADO,08,Herbicides,8,TH,H,3.176,2.38796992481203,1.33,1.33
Corn,2013,COLORADO,08,Insecticides,8,TI,I,0.081,0.0609022556390977,1.33,1.33
Corn,2012,COLORADO,08,"All Pesticides",8,TA,I,3.257,2.44887218045113,1.33,1.33
Corn,2012,COLORADO,08,Herbicides,8,TH,H,3.176,2.38796992481203,1.33,1.33
Corn,2012,COLORADO,08,Insecticides,8,TI,I,0.081,0.0609022556390977,1.33,1.33
Corn,2011,COLORADO,08,"All Pesticides",8,TA,I,3.257,2.44887218045113,1.33,1.33
Corn,2011,COLORADO,08,Herbicides,8,TH,H,3.176,2.38796992481203,1.33,1.33
Corn,2011,COLORADO,08,Insecticides,8,TI,I,0.081,0.0609022556390977,1.33,1.33
Corn,2009,COLORADO,08,"All Pesticides",8,TA,I,1.746,1.58727272727273,1.1,1.1
Corn,2009,COLORADO,08,Herbicides,8,TH,H,1.494,1.35818181818182,1.1,1.1
Corn,2009,COLORADO,08,Insecticides,8,TI,I,0.252,0.229090909090909,1.1,1.1
Corn,2008,COLORADO,08,"All Pesticides",8,TA,I,1.746,1.58727272727273,1.1,1.1
Corn,2008,COLORADO,08,Herbicides,8,TH,H,1.494,1.35818181818182,1.1,1.1
Corn,2008,COLORADO,08,Insecticides,8,TI,I,0.252,0.229090909090909,1.1,1.1
Corn,2007,COLORADO,08,"All Pesticides",8,TA,I,1.746,1.58727272727273,1.1,1.1
Corn,2007,COLORADO,08,Herbicides,8,TH,H,1.494,1.35818181818182,1.1,1.1
Corn,2007,COLORADO,08,Insecticides,8,TI,I,0.252,0.229090909090909,1.1,1.1
Corn,2006,COLORADO,08,"All Pesticides",8,TA,I,1.746,1.58727272727273,1.1,1.1
Corn,2006,COLORADO,08,Herbicides,8,TH,H,1.494,1.35818181818182,1.1,1.1
Corn,2006,COLORADO,08,Insecticides,8,TI,I,0.252,0.229090909090909,1.1,1.1
Corn,2005,COLORADO,08,"All Pesticides",8,TA,I,1.746,1.58727272727273,1.1,1.1
Corn,2005,COLORADO,08,Herbicides,8,TH,H,1.494,1.35818181818182,1.1,1.1
Corn,2005,COLORADO,08,Insecticides,8,TI,I,0.252,0.229090909090909,1.1,1.1
Corn,2004,COLORADO,08,"All Pesticides",8,TA,I,1.377,1.275,1.08,1.08
Corn,2004,COLORADO,08,Herbicides,8,TH,H,1.099,1.01759259259259,1.08,1.08
Corn,2004,COLORADO,08,Insecticides,8,TI,I,0.278,0.257407407407407,1.08,1.08
Corn,2003,COLORADO,08,"All Pesticides",8,TA,I,1.377,1.275,1.08,1.08
Corn,2003,COLORADO,08,Herbicides,8,TH,H,1.099,1.01759259259259,1.08,1.08
Corn,2003,COLORADO,08,Insecticides,8,TI,I,0.278,0.257407407407407,1.08,1.08
Corn,2002,COLORADO,08,"All Pesticides",8,TA,H,1.937,1.58770491803279,1.22,1.22
Corn,2002,COLORADO,08,Herbicides,8,TH,H,1.506,1.2344262295082,1.22,1.22
Corn,2002,COLORADO,08,Insecticides,8,TI,I,0.431,0.35327868852459,1.22,1.22
Corn,2001,COLORADO,08,"All Pesticides",8,TA,H,1.937,1.58770491803279,1.22,1.22
Corn,2001,COLORADO,08,Herbicides,8,TH,H,1.506,1.2344262295082,1.22,1.22
Corn,2001,COLORADO,08,Insecticides,8,TI,I,0.431,0.35327868852459,1.22,1.22
Corn,2000,COLORADO,08,"All Pesticides",8,TA,I,2.006,1.48592592592593,1.35,1.35
Corn,2000,COLORADO,08,Herbicides,8,TH,H,1.501,1.11185185185185,1.35,1.35
Corn,2000,COLORADO,08,Insecticides,8,TI,I,0.505,0.374074074074074,1.35,1.35
Corn,1999,COLORADO,08,"All Pesticides",8,TA,H,2.242,1.82276422764228,1.23,1.23
Corn,1999,COLORADO,08,Herbicides,8,TH,H,1.763,1.43333333333333,1.23,1.23
Corn,1999,COLORADO,08,Insecticides,8,TI,I,0.479,0.389430894308943,1.23,1.23
Corn,1998,COLORADO,08,"All Pesticides",8,TA,H,2.125,1.80084745762712,1.18,1.18
Corn,1998,COLORADO,08,Herbicides,8,TH,H,1.595,1.35169491525424,1.18,1.18
Corn,1998,COLORADO,08,Insecticides,8,TI,I,0.53,0.449152542372881,1.18,1.18
Corn,2014,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2014,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2014,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2013,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2013,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2013,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2012,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2012,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2012,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2011,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2011,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2011,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2010,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2010,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2010,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2009,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2009,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2009,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2008,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2008,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2008,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2007,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2007,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2007,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2006,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2006,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2006,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2005,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2005,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2005,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2004,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2004,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2004,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2003,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2003,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2003,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2002,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2002,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2002,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2001,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2001,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2001,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2000,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,2000,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,2000,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,1999,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,1999,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,1999,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,1998,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,1998,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,1998,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,1997,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,1997,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,1997,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,1996,DELAWARE,10,"All Pesticides",8,TA,I,0.453,3.02,0.15,0.15
Corn,1996,DELAWARE,10,Herbicides,8,TH,H,0.427,2.84666666666667,0.15,0.15
Corn,1996,DELAWARE,10,Insecticides,8,TI,I,0.026,0.173333333333333,0.15,0.15
Corn,2014,GEORGIA,13,"All Pesticides",8,TA,H,0.617,2.09152542372881,0.295,0.295
Corn,2014,GEORGIA,13,Herbicides,8,TH,H,0.559,1.89491525423729,0.295,0.295
Corn,2014,GEORGIA,13,Insecticides,8,TI,I,0.058,0.196610169491525,0.295,0.295
Corn,2013,GEORGIA,13,"All Pesticides",8,TA,H,0.617,2.09152542372881,0.295,0.295
Corn,2013,GEORGIA,13,Herbicides,8,TH,H,0.559,1.89491525423729,0.295,0.295
Corn,2013,GEORGIA,13,Insecticides,8,TI,I,0.058,0.196610169491525,0.295,0.295
Corn,2012,GEORGIA,13,"All Pesticides",8,TA,H,0.617,2.09152542372881,0.295,0.295
Corn,2012,GEORGIA,13,Herbicides,8,TH,H,0.559,1.89491525423729,0.295,0.295
Corn,2012,GEORGIA,13,Insecticides,8,TI,I,0.058,0.196610169491525,0.295,0.295
Corn,2011,GEORGIA,13,"All Pesticides",8,TA,H,0.617,2.09152542372881,0.295,0.295
Corn,2011,GEORGIA,13,Herbicides,8,TH,H,0.559,1.89491525423729,0.295,0.295
Corn,2011,GEORGIA,13,Insecticides,8,TI,I,0.058,0.196610169491525,0.295,0.295
Corn,2009,GEORGIA,13,"All Pesticides",8,TA,I,0.52,1.92592592592593,0.27,0.27
Corn,2009,GEORGIA,13,Herbicides,8,TH,H,0.495,1.83333333333333,0.27,0.27
Corn,2009,GEORGIA,13,Insecticides,8,TI,I,0.025,0.0925925925925926,0.27,0.27
Corn,2008,GEORGIA,13,"All Pesticides",8,TA,I,0.52,1.92592592592593,0.27,0.27
Corn,2008,GEORGIA,13,Herbicides,8,TH,H,0.495,1.83333333333333,0.27,0.27
Corn,2008,GEORGIA,13,Insecticides,8,TI,I,0.025,0.0925925925925926,0.27,0.27
Corn,2007,GEORGIA,13,"All Pesticides",8,TA,I,0.52,1.92592592592593,0.27,0.27
Corn,2007,GEORGIA,13,Herbicides,8,TH,H,0.495,1.83333333333333,0.27,0.27
Corn,2007,GEORGIA,13,Insecticides,8,TI,I,0.025,0.0925925925925926,0.27,0.27
Corn,2006,GEORGIA,13,"All Pesticides",8,TA,I,0.52,1.92592592592593,0.27,0.27
Corn,2006,GEORGIA,13,Herbicides,8,TH,H,0.495,1.83333333333333,0.27,0.27
Corn,2006,GEORGIA,13,Insecticides,8,TI,I,0.025,0.0925925925925926,0.27,0.27
Corn,2005,GEORGIA,13,"All Pesticides",8,TA,I,0.52,1.92592592592593,0.27,0.27
Corn,2005,GEORGIA,13,Herbicides,8,TH,H,0.495,1.83333333333333,0.27,0.27
Corn,2005,GEORGIA,13,Insecticides,8,TI,I,0.025,0.0925925925925926,0.27,0.27
Corn,2004,GEORGIA,13,"All Pesticides",8,TA,I,0.455,1.71698113207547,0.265,0.265
Corn,2004,GEORGIA,13,Herbicides,8,TH,H,0.398,1.50188679245283,0.265,0.265
Corn,2004,GEORGIA,13,Insecticides,8,TI,I,0.057,0.215094339622642,0.265,0.265
Corn,2003,GEORGIA,13,"All Pesticides",8,TA,I,0.455,1.71698113207547,0.265,0.265
Corn,2003,GEORGIA,13,Herbicides,8,TH,H,0.398,1.50188679245283,0.265,0.265
Corn,2003,GEORGIA,13,Insecticides,8,TI,I,0.057,0.215094339622642,0.265,0.265
Corn,2002,GEORGIA,13,"All Pesticides",8,TA,I,0.455,1.71698113207547,0.265,0.265
Corn,2002,GEORGIA,13,Herbicides,8,TH,H,0.398,1.50188679245283,0.265,0.265
Corn,2002,GEORGIA,13,Insecticides,8,TI,I,0.057,0.215094339622642,0.265,0.265
Corn,2001,GEORGIA,13,"All Pesticides",8,TA,I,0.455,1.71698113207547,0.265,0.265
Corn,2001,GEORGIA,13,Herbicides,8,TH,H,0.398,1.50188679245283,0.265,0.265
Corn,2001,GEORGIA,13,Insecticides,8,TI,I,0.057,0.215094339622642,0.265,0.265
Corn,2000,GEORGIA,13,"All Pesticides",8,TA,I,0.8,2.0,0.4,0.4
Corn,2000,GEORGIA,13,Herbicides,8,TH,H,0.712,1.78,0.4,0.4
Corn,2000,GEORGIA,13,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
Corn,1999,GEORGIA,13,"All Pesticides",8,TA,I,0.8,2.0,0.4,0.4
Corn,1999,GEORGIA,13,Herbicides,8,TH,H,0.712,1.78,0.4,0.4
Corn,1999,GEORGIA,13,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
Corn,1998,GEORGIA,13,"All Pesticides",8,TA,I,0.8,2.0,0.4,0.4
Corn,1998,GEORGIA,13,Herbicides,8,TH,H,0.712,1.78,0.4,0.4
Corn,1998,GEORGIA,13,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
Corn,1997,GEORGIA,13,"All Pesticides",8,TA,I,0.8,2.0,0.4,0.4
Corn,1997,GEORGIA,13,Herbicides,8,TH,H,0.712,1.78,0.4,0.4
Corn,1997,GEORGIA,13,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
Corn,1996,GEORGIA,13,"All Pesticides",8,TA,I,0.8,2.0,0.4,0.4
Corn,1996,GEORGIA,13,Herbicides,8,TH,H,0.712,1.78,0.4,0.4
Corn,1996,GEORGIA,13,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
Corn,1995,GEORGIA,13,"All Pesticides",8,TA,I,0.8,2.0,0.4,0.4
Corn,1995,GEORGIA,13,Herbicides,8,TH,H,0.712,1.78,0.4,0.4
Corn,1995,GEORGIA,13,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
Corn,1994,GEORGIA,13,"All Pesticides",8,TA,H,0.745,1.14615384615385,0.65,0.65
Corn,1994,GEORGIA,13,Herbicides,8,TH,H,0.745,1.14615384615385,0.65,0.65
Corn,1994,GEORGIA,13,Insecticides,8,TI,I,,,0.65,0.65
Corn,1993,GEORGIA,13,"All Pesticides",8,TA,H,0.745,1.14615384615385,0.65,0.65
Corn,1993,GEORGIA,13,Herbicides,8,TH,H,0.745,1.14615384615385,0.65,0.65
Corn,1993,GEORGIA,13,Insecticides,8,TI,I,,,0.65,0.65
Corn,1992,GEORGIA,13,"All Pesticides",8,TA,I,1.075,1.43333333333333,0.75,0.75
Corn,1992,GEORGIA,13,Herbicides,8,TH,H,1.075,1.43333333333333,0.75,0.75
Corn,1992,GEORGIA,13,Insecticides,8,TI,I,,,0.75,0.75
Corn,1991,GEORGIA,13,"All Pesticides",8,TA,H,0.542,0.903333333333333,0.6,0.6
Corn,1991,GEORGIA,13,Herbicides,8,TH,H,0.542,0.903333333333333,0.6,0.6
Corn,1991,GEORGIA,13,Insecticides,8,TI,I,,,0.6,0.6
Corn,2014,ILLINOIS,17,"All Pesticides",8,TA,I,30.092,2.38825396825397,12.6,12.6
Corn,2014,ILLINOIS,17,Fungicides,8,TF,F,0.339,0.0269047619047619,12.6,12.6
Corn,2014,ILLINOIS,17,Herbicides,8,TH,H,29.354,2.32968253968254,12.6,12.6
Corn,2014,ILLINOIS,17,Insecticides,8,TI,I,0.399,0.0316666666666667,12.6,12.6
Corn,2013,ILLINOIS,17,"All Pesticides",8,TA,I,30.092,2.38825396825397,12.6,12.6
Corn,2013,ILLINOIS,17,Fungicides,8,TF,F,0.339,0.0269047619047619,12.6,12.6
Corn,2013,ILLINOIS,17,Herbicides,8,TH,H,29.354,2.32968253968254,12.6,12.6
Corn,2013,ILLINOIS,17,Insecticides,8,TI,I,0.399,0.0316666666666667,12.6,12.6
Corn,2012,ILLINOIS,17,"All Pesticides",8,TA,I,30.092,2.38825396825397,12.6,12.6
Corn,2012,ILLINOIS,17,Fungicides,8,TF,F,0.339,0.0269047619047619,12.6,12.6
Corn,2012,ILLINOIS,17,Herbicides,8,TH,H,29.354,2.32968253968254,12.6,12.6
Corn,2012,ILLINOIS,17,Insecticides,8,TI,I,0.399,0.0316666666666667,12.6,12.6
Corn,2011,ILLINOIS,17,"All Pesticides",8,TA,I,30.092,2.38825396825397,12.6,12.6
Corn,2011,ILLINOIS,17,Fungicides,8,TF,F,0.339,0.0269047619047619,12.6,12.6
Corn,2011,ILLINOIS,17,Herbicides,8,TH,H,29.354,2.32968253968254,12.6,12.6
Corn,2011,ILLINOIS,17,Insecticides,8,TI,I,0.399,0.0316666666666667,12.6,12.6
Corn,2009,ILLINOIS,17,"All Pesticides",8,TA,H,32.393,2.67710743801653,12.1,12.1
Corn,2009,ILLINOIS,17,Herbicides,8,TH,H,30.967,2.55925619834711,12.1,12.1
Corn,2009,ILLINOIS,17,Insecticides,8,TI,I,1.426,0.117851239669421,12.1,12.1
Corn,2008,ILLINOIS,17,"All Pesticides",8,TA,H,32.393,2.67710743801653,12.1,12.1
Corn,2008,ILLINOIS,17,Herbicides,8,TH,H,30.967,2.55925619834711,12.1,12.1
Corn,2008,ILLINOIS,17,Insecticides,8,TI,I,1.426,0.117851239669421,12.1,12.1
Corn,2007,ILLINOIS,17,"All Pesticides",8,TA,H,32.393,2.67710743801653,12.1,12.1
Corn,2007,ILLINOIS,17,Herbicides,8,TH,H,30.967,2.55925619834711,12.1,12.1
Corn,2007,ILLINOIS,17,Insecticides,8,TI,I,1.426,0.117851239669421,12.1,12.1
Corn,2006,ILLINOIS,17,"All Pesticides",8,TA,H,32.393,2.67710743801653,12.1,12.1
Corn,2006,ILLINOIS,17,Herbicides,8,TH,H,30.967,2.55925619834711,12.1,12.1
Corn,2006,ILLINOIS,17,Insecticides,8,TI,I,1.426,0.117851239669421,12.1,12.1
Corn,2005,ILLINOIS,17,"All Pesticides",8,TA,H,32.393,2.67710743801653,12.1,12.1
Corn,2005,ILLINOIS,17,Herbicides,8,TH,H,30.967,2.55925619834711,12.1,12.1
Corn,2005,ILLINOIS,17,Insecticides,8,TI,I,1.426,0.117851239669421,12.1,12.1
Corn,2004,ILLINOIS,17,"All Pesticides",8,TA,H,30.566,2.72910714285714,11.2,11.2
Corn,2004,ILLINOIS,17,Herbicides,8,TH,H,28.926,2.58267857142857,11.2,11.2
Corn,2004,ILLINOIS,17,Insecticides,8,TI,I,1.64,0.146428571428571,11.2,11.2
Corn,2003,ILLINOIS,17,"All Pesticides",8,TA,H,30.566,2.72910714285714,11.2,11.2
Corn,2003,ILLINOIS,17,Herbicides,8,TH,H,28.926,2.58267857142857,11.2,11.2
Corn,2003,ILLINOIS,17,Insecticides,8,TI,I,1.64,0.146428571428571,11.2,11.2
Corn,2002,ILLINOIS,17,"All Pesticides",8,TA,H,26.245,2.36441441441441,11.1,11.1
Corn,2002,ILLINOIS,17,Herbicides,8,TH,H,25.157,2.2663963963964,11.1,11.1
Corn,2002,ILLINOIS,17,Insecticides,8,TI,I,1.088,0.098018018018018,11.1,11.1
Corn,2001,ILLINOIS,17,"All Pesticides",8,TA,I,33.655,3.05954545454545,11.0,11.0
Corn,2001,ILLINOIS,17,Herbicides,8,TH,H,31.868,2.89709090909091,11.0,11.0
Corn,2001,ILLINOIS,17,Insecticides,8,TI,I,1.787,0.162454545454545,11.0,11.0
Corn,2000,ILLINOIS,17,"All Pesticides",8,TA,I,31.321,2.79651785714286,11.2,11.2
Corn,2000,ILLINOIS,17,Herbicides,8,TH,H,28.19,2.51696428571429,11.2,11.2
Corn,2000,ILLINOIS,17,Insecticides,8,TI,I,3.131,0.279553571428571,11.2,11.2
Corn,1999,ILLINOIS,17,"All Pesticides",8,TA,I,30.3,2.80555555555555,10.8,10.8
Corn,1999,ILLINOIS,17,Herbicides,8,TH,H,28.467,2.63583333333333,10.8,10.8
Corn,1999,ILLINOIS,17,Insecticides,8,TI,I,1.833,0.169722222222222,10.8,10.8
Corn,1998,ILLINOIS,17,"All Pesticides",8,TA,H,33.719,3.18103773584906,10.6,10.6
Corn,1998,ILLINOIS,17,Herbicides,8,TH,H,31.723,2.9927358490566,10.6,10.6
Corn,1998,ILLINOIS,17,Insecticides,8,TI,I,1.996,0.188301886792453,10.6,10.6
Corn,1997,ILLINOIS,17,"All Pesticides",8,TA,H,36.999,3.30348214285714,11.2,11.2
Corn,1997,ILLINOIS,17,Herbicides,8,TH,H,32.733,2.92258928571429,11.2,11.2
Corn,1997,ILLINOIS,17,Insecticides,8,TI,I,4.266,0.380892857142857,11.2,11.2
Corn,1996,ILLINOIS,17,"All Pesticides",8,TA,I,36.366,3.306,11.0,11.0
Corn,1996,ILLINOIS,17,Herbicides,8,TH,H,34.223,3.11118181818182,11.0,11.0
Corn,1996,ILLINOIS,17,Insecticides,8,TI,I,2.143,0.194818181818182,11.0,11.0
Corn,1995,ILLINOIS,17,"All Pesticides",8,TA,H,32.929,3.22833333333333,10.2,10.2
Corn,1995,ILLINOIS,17,Herbicides,8,TH,H,30.811,3.0206862745098,10.2,10.2
Corn,1995,ILLINOIS,17,Insecticides,8,TI,I,2.118,0.207647058823529,10.2,10.2
Corn,1994,ILLINOIS,17,"All Pesticides",8,TA,H,40.879,3.52405172413793,11.6,11.6
Corn,1994,ILLINOIS,17,Herbicides,8,TH,H,37.87,3.26465517241379,11.6,11.6
Corn,1994,ILLINOIS,17,Insecticides,8,TI,I,3.009,0.259396551724138,11.6,11.6
Corn,1993,ILLINOIS,17,"All Pesticides",8,TA,I,38.679,3.68371428571429,10.5,10.5
Corn,1993,ILLINOIS,17,Herbicides,8,TH,H,35.698,3.39980952380952,10.5,10.5
Corn,1993,ILLINOIS,17,Insecticides,8,TI,I,2.981,0.283904761904762,10.5,10.5
Corn,1992,ILLINOIS,17,"All Pesticides",8,TA,I,40.742,3.63767857142857,11.2,11.2
Corn,1992,ILLINOIS,17,Herbicides,8,TH,H,37.992,3.39214285714286,11.2,11.2
Corn,1992,ILLINOIS,17,Insecticides,8,TI,I,2.75,0.245535714285714,11.2,11.2
Corn,1991,ILLINOIS,17,"All Pesticides",8,TA,H,38.166,3.40767857142857,11.2,11.2
Corn,1991,ILLINOIS,17,Herbicides,8,TH,H,35.128,3.13642857142857,11.2,11.2
Corn,1991,ILLINOIS,17,Insecticides,8,TI,I,3.038,0.27125,11.2,11.2
Corn,2014,INDIANA,18,"All Pesticides",8,TA,H,15.205,2.5771186440678,5.9,5.9
Corn,2014,INDIANA,18,Fungicides,8,TF,F,0.031,0.00525423728813559,5.9,5.9
Corn,2014,INDIANA,18,Herbicides,8,TH,H,15.06,2.55254237288136,5.9,5.9
Corn,2014,INDIANA,18,Insecticides,8,TI,I,0.114,0.0193220338983051,5.9,5.9
Corn,2013,INDIANA,18,"All Pesticides",8,TA,H,15.205,2.5771186440678,5.9,5.9
Corn,2013,INDIANA,18,Fungicides,8,TF,F,0.031,0.00525423728813559,5.9,5.9
Corn,2013,INDIANA,18,Herbicides,8,TH,H,15.06,2.55254237288136,5.9,5.9
Corn,2013,INDIANA,18,Insecticides,8,TI,I,0.114,0.0193220338983051,5.9,5.9
Corn,2012,INDIANA,18,"All Pesticides",8,TA,H,15.205,2.5771186440678,5.9,5.9
Corn,2012,INDIANA,18,Fungicides,8,TF,F,0.031,0.00525423728813559,5.9,5.9
Corn,2012,INDIANA,18,Herbicides,8,TH,H,15.06,2.55254237288136,5.9,5.9
Corn,2012,INDIANA,18,Insecticides,8,TI,I,0.114,0.0193220338983051,5.9,5.9
Corn,2011,INDIANA,18,"All Pesticides",8,TA,H,15.205,2.5771186440678,5.9,5.9
Corn,2011,INDIANA,18,Fungicides,8,TF,F,0.031,0.00525423728813559,5.9,5.9
Corn,2011,INDIANA,18,Herbicides,8,TH,H,15.06,2.55254237288136,5.9,5.9
Corn,2011,INDIANA,18,Insecticides,8,TI,I,0.114,0.0193220338983051,5.9,5.9
Corn,2009,INDIANA,18,"All Pesticides",8,TA,I,14.858,2.51830508474576,5.9,5.9
Corn,2009,INDIANA,18,Herbicides,8,TH,H,14.136,2.39593220338983,5.9,5.9
Corn,2009,INDIANA,18,Insecticides,8,TI,I,0.722,0.122372881355932,5.9,5.9
Corn,2008,INDIANA,18,"All Pesticides",8,TA,I,14.858,2.51830508474576,5.9,5.9
Corn,2008,INDIANA,18,Herbicides,8,TH,H,14.136,2.39593220338983,5.9,5.9
Corn,2008,INDIANA,18,Insecticides,8,TI,I,0.722,0.122372881355932,5.9,5.9
Corn,2007,INDIANA,18,"All Pesticides",8,TA,I,14.858,2.51830508474576,5.9,5.9
Corn,2007,INDIANA,18,Herbicides,8,TH,H,14.136,2.39593220338983,5.9,5.9
Corn,2007,INDIANA,18,Insecticides,8,TI,I,0.722,0.122372881355932,5.9,5.9
Corn,2006,INDIANA,18,"All Pesticides",8,TA,I,14.858,2.51830508474576,5.9,5.9
Corn,2006,INDIANA,18,Herbicides,8,TH,H,14.136,2.39593220338983,5.9,5.9
Corn,2006,INDIANA,18,Insecticides,8,TI,I,0.722,0.122372881355932,5.9,5.9
Corn,2005,INDIANA,18,"All Pesticides",8,TA,I,14.858,2.51830508474576,5.9,5.9
Corn,2005,INDIANA,18,Herbicides,8,TH,H,14.136,2.39593220338983,5.9,5.9
Corn,2005,INDIANA,18,Insecticides,8,TI,I,0.722,0.122372881355932,5.9,5.9
Corn,2004,INDIANA,18,"All Pesticides",8,TA,H,14.387,2.56910714285714,5.6,5.6
Corn,2004,INDIANA,18,Herbicides,8,TH,H,13.064,2.33285714285714,5.6,5.6
Corn,2004,INDIANA,18,Insecticides,8,TI,I,1.323,0.23625,5.6,5.6
Corn,2003,INDIANA,18,"All Pesticides",8,TA,H,14.387,2.56910714285714,5.6,5.6
Corn,2003,INDIANA,18,Herbicides,8,TH,H,13.064,2.33285714285714,5.6,5.6
Corn,2003,INDIANA,18,Insecticides,8,TI,I,1.323,0.23625,5.6,5.6
Corn,2002,INDIANA,18,"All Pesticides",8,TA,I,12.264,2.27111111111111,5.4,5.4
Corn,2002,INDIANA,18,Herbicides,8,TH,H,11.535,2.13611111111111,5.4,5.4
Corn,2002,INDIANA,18,Insecticides,8,TI,I,0.729,0.135,5.4,5.4
Corn,2001,INDIANA,18,"All Pesticides",8,TA,I,17.11,2.95,5.8,5.8
Corn,2001,INDIANA,18,Herbicides,8,TH,H,16.007,2.7598275862069,5.8,5.8
Corn,2001,INDIANA,18,Insecticides,8,TI,I,1.103,0.190172413793103,5.8,5.8
Corn,2000,INDIANA,18,"All Pesticides",8,TA,H,16.257,2.85210526315789,5.7,5.7
Corn,2000,INDIANA,18,Herbicides,8,TH,H,15.46,2.71228070175439,5.7,5.7
Corn,2000,INDIANA,18,Insecticides,8,TI,I,0.797,0.139824561403509,5.7,5.7
Corn,1999,INDIANA,18,"All Pesticides",8,TA,H,15.975,2.75431034482759,5.8,5.8
Corn,1999,INDIANA,18,Herbicides,8,TH,H,14.819,2.555,5.8,5.8
Corn,1999,INDIANA,18,Insecticides,8,TI,I,1.156,0.199310344827586,5.8,5.8
Corn,1998,INDIANA,18,"All Pesticides",8,TA,I,19.968,3.44275862068966,5.8,5.8
Corn,1998,INDIANA,18,Herbicides,8,TH,H,18.373,3.16775862068966,5.8,5.8
Corn,1998,INDIANA,18,Insecticides,8,TI,I,1.595,0.275,5.8,5.8
Corn,1997,INDIANA,18,"All Pesticides",8,TA,I,19.15,3.24576271186441,5.9,5.9
Corn,1997,INDIANA,18,Herbicides,8,TH,H,18.127,3.07237288135593,5.9,5.9
Corn,1997,INDIANA,18,Insecticides,8,TI,I,1.023,0.173389830508475,5.9,5.9
Corn,1996,INDIANA,18,"All Pesticides",8,TA,H,20.322,3.62892857142857,5.6,5.6
Corn,1996,INDIANA,18,Herbicides,8,TH,H,18.856,3.36714285714286,5.6,5.6
Corn,1996,INDIANA,18,Insecticides,8,TI,I,1.466,0.261785714285714,5.6,5.6
Corn,1995,INDIANA,18,"All Pesticides",8,TA,I,17.601,3.25944444444444,5.4,5.4
Corn,1995,INDIANA,18,Herbicides,8,TH,H,16.842,3.11888888888889,5.4,5.4
Corn,1995,INDIANA,18,Insecticides,8,TI,I,0.759,0.140555555555556,5.4,5.4
Corn,1994,INDIANA,18,"All Pesticides",8,TA,H,20.792,3.40852459016393,6.1,6.1
Corn,1994,INDIANA,18,Herbicides,8,TH,H,19.601,3.21327868852459,6.1,6.1
Corn,1994,INDIANA,18,Insecticides,8,TI,I,1.191,0.195245901639344,6.1,6.1
Corn,1993,INDIANA,18,"All Pesticides",8,TA,H,20.153,3.63117117117117,5.55,5.55
Corn,1993,INDIANA,18,Herbicides,8,TH,H,19.127,3.44630630630631,5.55,5.55
Corn,1993,INDIANA,18,Insecticides,8,TI,I,1.026,0.184864864864865,5.55,5.55
Corn,1992,INDIANA,18,"All Pesticides",8,TA,I,21.08,3.45573770491803,6.1,6.1
Corn,1992,INDIANA,18,Herbicides,8,TH,H,19.419,3.18344262295082,6.1,6.1
Corn,1992,INDIANA,18,Insecticides,8,TI,I,1.661,0.272295081967213,6.1,6.1
Corn,1991,INDIANA,18,"All Pesticides",8,TA,H,18.976,3.32912280701754,5.7,5.7
Corn,1991,INDIANA,18,Herbicides,8,TH,H,17.345,3.04298245614035,5.7,5.7
Corn,1991,INDIANA,18,Insecticides,8,TI,I,1.631,0.286140350877193,5.7,5.7
Corn,2014,IOWA,19,"All Pesticides",8,TA,I,26.492,1.97701492537313,13.4,13.4
Corn,2014,IOWA,19,Fungicides,8,TF,F,0.149,0.0111194029850746,13.4,13.4
Corn,2014,IOWA,19,Herbicides,8,TH,H,26.195,1.95485074626866,13.4,13.4
Corn,2014,IOWA,19,Insecticides,8,TI,I,0.148,0.011044776119403,13.4,13.4
Corn,2013,IOWA,19,"All Pesticides",8,TA,I,26.492,1.97701492537313,13.4,13.4
Corn,2013,IOWA,19,Fungicides,8,TF,F,0.149,0.0111194029850746,13.4,13.4
Corn,2013,IOWA,19,Herbicides,8,TH,H,26.195,1.95485074626866,13.4,13.4
Corn,2013,IOWA,19,Insecticides,8,TI,I,0.148,0.011044776119403,13.4,13.4
Corn,2012,IOWA,19,"All Pesticides",8,TA,I,26.492,1.97701492537313,13.4,13.4
Corn,2012,IOWA,19,Fungicides,8,TF,F,0.149,0.0111194029850746,13.4,13.4
Corn,2012,IOWA,19,Herbicides,8,TH,H,26.195,1.95485074626866,13.4,13.4
Corn,2012,IOWA,19,Insecticides,8,TI,I,0.148,0.011044776119403,13.4,13.4
Corn,2011,IOWA,19,"All Pesticides",8,TA,I,26.492,1.97701492537313,13.4,13.4
Corn,2011,IOWA,19,Fungicides,8,TF,F,0.149,0.0111194029850746,13.4,13.4
Corn,2011,IOWA,19,Herbicides,8,TH,H,26.195,1.95485074626866,13.4,13.4
Corn,2011,IOWA,19,Insecticides,8,TI,I,0.148,0.011044776119403,13.4,13.4
Corn,2009,IOWA,19,"All Pesticides",8,TA,I,24.913,1.946328125,12.8,12.8
Corn,2009,IOWA,19,Herbicides,8,TH,H,24.726,1.93171875,12.8,12.8
Corn,2009,IOWA,19,Insecticides,8,TI,I,0.187,0.014609375,12.8,12.8
Corn,2008,IOWA,19,"All Pesticides",8,TA,I,24.913,1.946328125,12.8,12.8
Corn,2008,IOWA,19,Herbicides,8,TH,H,24.726,1.93171875,12.8,12.8
Corn,2008,IOWA,19,Insecticides,8,TI,I,0.187,0.014609375,12.8,12.8
Corn,2007,IOWA,19,"All Pesticides",8,TA,I,24.913,1.946328125,12.8,12.8
Corn,2007,IOWA,19,Herbicides,8,TH,H,24.726,1.93171875,12.8,12.8
Corn,2007,IOWA,19,Insecticides,8,TI,I,0.187,0.014609375,12.8,12.8
Corn,2006,IOWA,19,"All Pesticides",8,TA,I,24.913,1.946328125,12.8,12.8
Corn,2006,IOWA,19,Herbicides,8,TH,H,24.726,1.93171875,12.8,12.8
Corn,2006,IOWA,19,Insecticides,8,TI,I,0.187,0.014609375,12.8,12.8
Corn,2005,IOWA,19,"All Pesticides",8,TA,I,24.913,1.946328125,12.8,12.8
Corn,2005,IOWA,19,Herbicides,8,TH,H,24.726,1.93171875,12.8,12.8
Corn,2005,IOWA,19,Insecticides,8,TI,I,0.187,0.014609375,12.8,12.8
Corn,2004,IOWA,19,"All Pesticides",8,TA,H,25.951,2.10983739837398,12.3,12.3
Corn,2004,IOWA,19,Herbicides,8,TH,H,25.328,2.05918699186992,12.3,12.3
Corn,2004,IOWA,19,Insecticides,8,TI,I,0.623,0.050650406504065,12.3,12.3
Corn,2003,IOWA,19,"All Pesticides",8,TA,H,25.951,2.10983739837398,12.3,12.3
Corn,2003,IOWA,19,Herbicides,8,TH,H,25.328,2.05918699186992,12.3,12.3
Corn,2003,IOWA,19,Insecticides,8,TI,I,0.623,0.050650406504065,12.3,12.3
Corn,2002,IOWA,19,"All Pesticides",8,TA,I,22.917,1.87844262295082,12.2,12.2
Corn,2002,IOWA,19,Herbicides,8,TH,H,22.485,1.84303278688525,12.2,12.2
Corn,2002,IOWA,19,Insecticides,8,TI,I,0.432,0.0354098360655738,12.2,12.2
Corn,2001,IOWA,19,"All Pesticides",8,TA,I,21.491,1.83683760683761,11.7,11.7
Corn,2001,IOWA,19,Herbicides,8,TH,H,20.627,1.76299145299145,11.7,11.7
Corn,2001,IOWA,19,Insecticides,8,TI,I,0.864,0.0738461538461539,11.7,11.7
Corn,2000,IOWA,19,"All Pesticides",8,TA,I,25.153,2.0449593495935,12.3,12.3
Corn,2000,IOWA,19,Herbicides,8,TH,H,24.518,1.99333333333333,12.3,12.3
Corn,2000,IOWA,19,Insecticides,8,TI,I,0.635,0.0516260162601626,12.3,12.3
Corn,1999,IOWA,19,"All Pesticides",8,TA,I,30.428,2.51471074380165,12.1,12.1
Corn,1999,IOWA,19,Herbicides,8,TH,H,27.966,2.31123966942149,12.1,12.1
Corn,1999,IOWA,19,Insecticides,8,TI,I,2.462,0.203471074380165,12.1,12.1
Corn,1998,IOWA,19,"All Pesticides",8,TA,I,33.445,2.6756,12.5,12.5
Corn,1998,IOWA,19,Herbicides,8,TH,H,31.911,2.55288,12.5,12.5
Corn,1998,IOWA,19,Insecticides,8,TI,I,1.534,0.12272,12.5,12.5
Corn,1997,IOWA,19,"All Pesticides",8,TA,I,38.467,3.15303278688525,12.2,12.2
Corn,1997,IOWA,19,Herbicides,8,TH,H,36.144,2.96262295081967,12.2,12.2
Corn,1997,IOWA,19,Insecticides,8,TI,I,2.323,0.190409836065574,12.2,12.2
Corn,1996,IOWA,19,"All Pesticides",8,TA,H,37.888,2.98330708661417,12.7,12.7
Corn,1996,IOWA,19,Herbicides,8,TH,H,36.109,2.84322834645669,12.7,12.7
Corn,1996,IOWA,19,Insecticides,8,TI,I,1.779,0.14007874015748,12.7,12.7
Corn,1995,IOWA,19,"All Pesticides",8,TA,H,35.778,3.00655462184874,11.9,11.9
Corn,1995,IOWA,19,Herbicides,8,TH,H,32.957,2.76949579831933,11.9,11.9
Corn,1995,IOWA,19,Insecticides,8,TI,I,2.821,0.237058823529412,11.9,11.9
Corn,1994,IOWA,19,"All Pesticides",8,TA,I,41.146,3.18961240310078,12.9,12.9
Corn,1994,IOWA,19,Herbicides,8,TH,H,38.199,2.96116279069767,12.9,12.9
Corn,1994,IOWA,19,Insecticides,8,TI,I,2.947,0.228449612403101,12.9,12.9
Corn,1993,IOWA,19,"All Pesticides",8,TA,I,39.242,3.27016666666667,12.0,12.0
Corn,1993,IOWA,19,Herbicides,8,TH,H,35.888,2.99066666666667,12.0,12.0
Corn,1993,IOWA,19,Insecticides,8,TI,I,3.354,0.2795,12.0,12.0
Corn,1992,IOWA,19,"All Pesticides",8,TA,I,45.026,3.41106060606061,13.2,13.2
Corn,1992,IOWA,19,Herbicides,8,TH,H,41.661,3.15613636363636,13.2,13.2
Corn,1992,IOWA,19,Insecticides,8,TI,I,3.365,0.254924242424242,13.2,13.2
Corn,1991,IOWA,19,"All Pesticides",8,TA,H,42.339,3.38712,12.5,12.5
Corn,1991,IOWA,19,Herbicides,8,TH,H,37.762,3.02096,12.5,12.5
Corn,1991,IOWA,19,Insecticides,8,TI,I,4.577,0.36616,12.5,12.5
Corn,2014,KANSAS,20,"All Pesticides",8,TA,I,14.82,3.05567010309278,4.85,4.85
Corn,2014,KANSAS,20,Herbicides,8,TH,H,14.727,3.03649484536083,4.85,4.85
Corn,2014,KANSAS,20,Insecticides,8,TI,I,0.093,0.0191752577319588,4.85,4.85
Corn,2013,KANSAS,20,"All Pesticides",8,TA,I,14.82,3.05567010309278,4.85,4.85
Corn,2013,KANSAS,20,Herbicides,8,TH,H,14.727,3.03649484536083,4.85,4.85
Corn,2013,KANSAS,20,Insecticides,8,TI,I,0.093,0.0191752577319588,4.85,4.85
Corn,2012,KANSAS,20,"All Pesticides",8,TA,I,14.82,3.05567010309278,4.85,4.85
Corn,2012,KANSAS,20,Herbicides,8,TH,H,14.727,3.03649484536083,4.85,4.85
Corn,2012,KANSAS,20,Insecticides,8,TI,I,0.093,0.0191752577319588,4.85,4.85
Corn,2011,KANSAS,20,"All Pesticides",8,TA,I,14.82,3.05567010309278,4.85,4.85
Corn,2011,KANSAS,20,Herbicides,8,TH,H,14.727,3.03649484536083,4.85,4.85
Corn,2011,KANSAS,20,Insecticides,8,TI,I,0.093,0.0191752577319588,4.85,4.85
Corn,2009,KANSAS,20,"All Pesticides",8,TA,I,7.525,2.06164383561644,3.65,3.65
Corn,2009,KANSAS,20,Herbicides,8,TH,H,7.436,2.0372602739726,3.65,3.65
Corn,2009,KANSAS,20,Insecticides,8,TI,I,0.089,0.0243835616438356,3.65,3.65
Corn,2008,KANSAS,20,"All Pesticides",8,TA,I,7.525,2.06164383561644,3.65,3.65
Corn,2008,KANSAS,20,Herbicides,8,TH,H,7.436,2.0372602739726,3.65,3.65
Corn,2008,KANSAS,20,Insecticides,8,TI,I,0.089,0.0243835616438356,3.65,3.65
Corn,2007,KANSAS,20,"All Pesticides",8,TA,I,7.525,2.06164383561644,3.65,3.65
Corn,2007,KANSAS,20,Herbicides,8,TH,H,7.436,2.0372602739726,3.65,3.65
Corn,2007,KANSAS,20,Insecticides,8,TI,I,0.089,0.0243835616438356,3.65,3.65
Corn,2006,KANSAS,20,"All Pesticides",8,TA,I,7.525,2.06164383561644,3.65,3.65
Corn,2006,KANSAS,20,Herbicides,8,TH,H,7.436,2.0372602739726,3.65,3.65
Corn,2006,KANSAS,20,Insecticides,8,TI,I,0.089,0.0243835616438356,3.65,3.65
Corn,2005,KANSAS,20,"All Pesticides",8,TA,I,7.525,2.06164383561644,3.65,3.65
Corn,2005,KANSAS,20,Herbicides,8,TH,H,7.436,2.0372602739726,3.65,3.65
Corn,2005,KANSAS,20,Insecticides,8,TI,I,0.089,0.0243835616438356,3.65,3.65
Corn,2004,KANSAS,20,"All Pesticides",8,TA,I,6.378,2.19931034482759,2.9,2.9
Corn,2004,KANSAS,20,Herbicides,8,TH,H,6.041,2.08310344827586,2.9,2.9
Corn,2004,KANSAS,20,Insecticides,8,TI,I,0.337,0.116206896551724,2.9,2.9
Corn,2003,KANSAS,20,"All Pesticides",8,TA,I,6.378,2.19931034482759,2.9,2.9
Corn,2003,KANSAS,20,Herbicides,8,TH,H,6.041,2.08310344827586,2.9,2.9
Corn,2003,KANSAS,20,Insecticides,8,TI,I,0.337,0.116206896551724,2.9,2.9
Corn,2002,KANSAS,20,"All Pesticides",8,TA,I,10.615,3.0768115942029,3.45,3.45
Corn,2002,KANSAS,20,Herbicides,8,TH,H,9.958,2.8863768115942,3.45,3.45
Corn,2002,KANSAS,20,Insecticides,8,TI,I,0.657,0.190434782608696,3.45,3.45
Corn,2001,KANSAS,20,"All Pesticides",8,TA,I,10.615,3.0768115942029,3.45,3.45
Corn,2001,KANSAS,20,Herbicides,8,TH,H,9.958,2.8863768115942,3.45,3.45
Corn,2001,KANSAS,20,Insecticides,8,TI,I,0.657,0.190434782608696,3.45,3.45
Corn,2000,KANSAS,20,"All Pesticides",8,TA,I,8.052,2.33391304347826,3.45,3.45
Corn,2000,KANSAS,20,Herbicides,8,TH,H,7.765,2.25072463768116,3.45,3.45
Corn,2000,KANSAS,20,Insecticides,8,TI,I,0.287,0.0831884057971014,3.45,3.45
Corn,1999,KANSAS,20,"All Pesticides",8,TA,H,7.004,2.22349206349206,3.15,3.15
Corn,1999,KANSAS,20,Herbicides,8,TH,H,6.619,2.10126984126984,3.15,3.15
Corn,1999,KANSAS,20,Insecticides,8,TI,I,0.385,0.122222222222222,3.15,3.15
Corn,1998,KANSAS,20,"All Pesticides",8,TA,H,5.757,1.919,3.0,3.0
Corn,1998,KANSAS,20,Herbicides,8,TH,H,5.357,1.78566666666667,3.0,3.0
Corn,1998,KANSAS,20,Insecticides,8,TI,I,0.4,0.133333333333333,3.0,3.0
Corn,1997,KANSAS,20,"All Pesticides",8,TA,I,6.299,2.5196,2.5,2.5
Corn,1997,KANSAS,20,Herbicides,8,TH,H,5.784,2.3136,2.5,2.5
Corn,1997,KANSAS,20,Insecticides,8,TI,I,0.515,0.206,2.5,2.5
Corn,1996,KANSAS,20,"All Pesticides",8,TA,I,6.299,2.5196,2.5,2.5
Corn,1996,KANSAS,20,Herbicides,8,TH,H,5.784,2.3136,2.5,2.5
Corn,1996,KANSAS,20,Insecticides,8,TI,I,0.515,0.206,2.5,2.5
Corn,1995,KANSAS,20,"All Pesticides",8,TA,I,5.042,2.34511627906977,2.15,2.15
Corn,1995,KANSAS,20,Herbicides,8,TH,H,4.397,2.04511627906977,2.15,2.15
Corn,1995,KANSAS,20,Insecticides,8,TI,I,0.645,0.3,2.15,2.15
Corn,1994,KANSAS,20,"All Pesticides",8,TA,H,4.588,2.294,2.0,2.0
Corn,1994,KANSAS,20,Herbicides,8,TH,H,3.77,1.885,2.0,2.0
Corn,1994,KANSAS,20,Insecticides,8,TI,I,0.818,0.409,2.0,2.0
Corn,1993,KANSAS,20,"All Pesticides",8,TA,H,4.588,2.294,2.0,2.0
Corn,1993,KANSAS,20,Herbicides,8,TH,H,3.77,1.885,2.0,2.0
Corn,1993,KANSAS,20,Insecticides,8,TI,I,0.818,0.409,2.0,2.0
Corn,1992,KANSAS,20,"All Pesticides",8,TA,H,3.779,2.0427027027027,1.85,1.85
Corn,1992,KANSAS,20,Herbicides,8,TH,H,3.212,1.73621621621622,1.85,1.85
Corn,1992,KANSAS,20,Insecticides,8,TI,I,0.567,0.306486486486486,1.85,1.85
Corn,1991,KANSAS,20,"All Pesticides",8,TA,H,3.394,1.88555555555556,1.8,1.8
Corn,1991,KANSAS,20,Herbicides,8,TH,H,3.103,1.72388888888889,1.8,1.8
Corn,1991,KANSAS,20,Insecticides,8,TI,I,0.291,0.161666666666667,1.8,1.8
Corn,2014,KENTUCKY,21,"All Pesticides",8,TA,H,4.673,3.48731343283582,1.34,1.34
Corn,2014,KENTUCKY,21,Herbicides,8,TH,H,4.661,3.47835820895522,1.34,1.34
Corn,2014,KENTUCKY,21,Insecticides,8,TI,I,0.012,0.00895522388059701,1.34,1.34
Corn,2013,KENTUCKY,21,"All Pesticides",8,TA,H,4.673,3.48731343283582,1.34,1.34
Corn,2013,KENTUCKY,21,Herbicides,8,TH,H,4.661,3.47835820895522,1.34,1.34
Corn,2013,KENTUCKY,21,Insecticides,8,TI,I,0.012,0.00895522388059701,1.34,1.34
Corn,2012,KENTUCKY,21,"All Pesticides",8,TA,H,4.673,3.48731343283582,1.34,1.34
Corn,2012,KENTUCKY,21,Herbicides,8,TH,H,4.661,3.47835820895522,1.34,1.34
Corn,2012,KENTUCKY,21,Insecticides,8,TI,I,0.012,0.00895522388059701,1.34,1.34
Corn,2011,KENTUCKY,21,"All Pesticides",8,TA,H,4.673,3.48731343283582,1.34,1.34
Corn,2011,KENTUCKY,21,Herbicides,8,TH,H,4.661,3.47835820895522,1.34,1.34
Corn,2011,KENTUCKY,21,Insecticides,8,TI,I,0.012,0.00895522388059701,1.34,1.34
Corn,2009,KENTUCKY,21,"All Pesticides",8,TA,H,3.213,2.5704,1.25,1.25
Corn,2009,KENTUCKY,21,Herbicides,8,TH,H,3.187,2.5496,1.25,1.25
Corn,2009,KENTUCKY,21,Insecticides,8,TI,I,0.026,0.0208,1.25,1.25
Corn,2008,KENTUCKY,21,"All Pesticides",8,TA,H,3.213,2.5704,1.25,1.25
Corn,2008,KENTUCKY,21,Herbicides,8,TH,H,3.187,2.5496,1.25,1.25
Corn,2008,KENTUCKY,21,Insecticides,8,TI,I,0.026,0.0208,1.25,1.25
Corn,2007,KENTUCKY,21,"All Pesticides",8,TA,H,3.213,2.5704,1.25,1.25
Corn,2007,KENTUCKY,21,Herbicides,8,TH,H,3.187,2.5496,1.25,1.25
Corn,2007,KENTUCKY,21,Insecticides,8,TI,I,0.026,0.0208,1.25,1.25
Corn,2006,KENTUCKY,21,"All Pesticides",8,TA,H,3.213,2.5704,1.25,1.25
Corn,2006,KENTUCKY,21,Herbicides,8,TH,H,3.187,2.5496,1.25,1.25
Corn,2006,KENTUCKY,21,Insecticides,8,TI,I,0.026,0.0208,1.25,1.25
Corn,2005,KENTUCKY,21,"All Pesticides",8,TA,H,3.213,2.5704,1.25,1.25
Corn,2005,KENTUCKY,21,Herbicides,8,TH,H,3.187,2.5496,1.25,1.25
Corn,2005,KENTUCKY,21,Insecticides,8,TI,I,0.026,0.0208,1.25,1.25
Corn,2004,KENTUCKY,21,"All Pesticides",8,TA,H,2.768,2.36581196581197,1.17,1.17
Corn,2004,KENTUCKY,21,Herbicides,8,TH,H,2.716,2.32136752136752,1.17,1.17
Corn,2004,KENTUCKY,21,Insecticides,8,TI,I,0.052,0.0444444444444444,1.17,1.17
Corn,2003,KENTUCKY,21,"All Pesticides",8,TA,H,2.768,2.36581196581197,1.17,1.17
Corn,2003,KENTUCKY,21,Herbicides,8,TH,H,2.716,2.32136752136752,1.17,1.17
Corn,2003,KENTUCKY,21,Insecticides,8,TI,I,0.052,0.0444444444444444,1.17,1.17
Corn,2002,KENTUCKY,21,"All Pesticides",8,TA,I,2.877,2.3975,1.2,1.2
Corn,2002,KENTUCKY,21,Herbicides,8,TH,H,2.834,2.36166666666667,1.2,1.2
Corn,2002,KENTUCKY,21,Insecticides,8,TI,I,0.043,0.0358333333333333,1.2,1.2
Corn,2001,KENTUCKY,21,"All Pesticides",8,TA,I,2.877,2.3975,1.2,1.2
Corn,2001,KENTUCKY,21,Herbicides,8,TH,H,2.834,2.36166666666667,1.2,1.2
Corn,2001,KENTUCKY,21,Insecticides,8,TI,I,0.043,0.0358333333333333,1.2,1.2
Corn,2000,KENTUCKY,21,"All Pesticides",8,TA,H,2.665,2.00375939849624,1.33,1.33
Corn,2000,KENTUCKY,21,Herbicides,8,TH,H,2.6,1.95488721804511,1.33,1.33
Corn,2000,KENTUCKY,21,Insecticides,8,TI,I,0.065,0.0488721804511278,1.33,1.33
Corn,1999,KENTUCKY,21,"All Pesticides",8,TA,H,3.509,2.65833333333333,1.32,1.32
Corn,1999,KENTUCKY,21,Herbicides,8,TH,H,3.487,2.64166666666667,1.32,1.32
Corn,1999,KENTUCKY,21,Insecticides,8,TI,I,0.022,0.0166666666666667,1.32,1.32
Corn,1998,KENTUCKY,21,"All Pesticides",8,TA,I,4.217,3.24384615384615,1.3,1.3
Corn,1998,KENTUCKY,21,Herbicides,8,TH,H,4.174,3.21076923076923,1.3,1.3
Corn,1998,KENTUCKY,21,Insecticides,8,TI,I,0.043,0.0330769230769231,1.3,1.3
Corn,1997,KENTUCKY,21,"All Pesticides",8,TA,I,4.202,3.23230769230769,1.3,1.3
Corn,1997,KENTUCKY,21,Herbicides,8,TH,H,4.159,3.19923076923077,1.3,1.3
Corn,1997,KENTUCKY,21,Insecticides,8,TI,I,0.043,0.0330769230769231,1.3,1.3
Corn,1996,KENTUCKY,21,"All Pesticides",8,TA,I,4.202,3.23230769230769,1.3,1.3
Corn,1996,KENTUCKY,21,Herbicides,8,TH,H,4.159,3.19923076923077,1.3,1.3
Corn,1996,KENTUCKY,21,Insecticides,8,TI,I,0.043,0.0330769230769231,1.3,1.3
Corn,1995,KENTUCKY,21,"All Pesticides",8,TA,I,3.593,2.80703125,1.28,1.28
Corn,1995,KENTUCKY,21,Herbicides,8,TH,H,3.537,2.76328125,1.28,1.28
Corn,1995,KENTUCKY,21,Insecticides,8,TI,I,0.056,0.04375,1.28,1.28
Corn,1994,KENTUCKY,21,"All Pesticides",8,TA,H,4.272,3.11824817518248,1.37,1.37
Corn,1994,KENTUCKY,21,Herbicides,8,TH,H,4.215,3.07664233576642,1.37,1.37
Corn,1994,KENTUCKY,21,Insecticides,8,TI,I,0.057,0.0416058394160584,1.37,1.37
Corn,1993,KENTUCKY,21,"All Pesticides",8,TA,H,4.272,3.11824817518248,1.37,1.37
Corn,1993,KENTUCKY,21,Herbicides,8,TH,H,4.215,3.07664233576642,1.37,1.37
Corn,1993,KENTUCKY,21,Insecticides,8,TI,I,0.057,0.0416058394160584,1.37,1.37
Corn,1992,KENTUCKY,21,"All Pesticides",8,TA,H,4.523,3.18521126760563,1.42,1.42
Corn,1992,KENTUCKY,21,Herbicides,8,TH,H,4.443,3.12887323943662,1.42,1.42
Corn,1992,KENTUCKY,21,Insecticides,8,TI,I,0.08,0.0563380281690141,1.42,1.42
Corn,1991,KENTUCKY,21,"All Pesticides",8,TA,I,5.121,3.65785714285714,1.4,1.4
Corn,1991,KENTUCKY,21,Herbicides,8,TH,H,5.121,3.65785714285714,1.4,1.4
Corn,1991,KENTUCKY,21,Insecticides,8,TI,I,,,1.4,1.4
Corn,2014,MICHIGAN,26,"All Pesticides",8,TA,H,4.52,1.88333333333333,2.4,2.4
Corn,2014,MICHIGAN,26,Herbicides,8,TH,H,4.52,1.88333333333333,2.4,2.4
Corn,2013,MICHIGAN,26,"All Pesticides",8,TA,H,4.52,1.88333333333333,2.4,2.4
Corn,2013,MICHIGAN,26,Herbicides,8,TH,H,4.52,1.88333333333333,2.4,2.4
Corn,2012,MICHIGAN,26,"All Pesticides",8,TA,H,4.52,1.88333333333333,2.4,2.4
Corn,2012,MICHIGAN,26,Herbicides,8,TH,H,4.52,1.88333333333333,2.4,2.4
Corn,2011,MICHIGAN,26,"All Pesticides",8,TA,H,4.52,1.88333333333333,2.4,2.4
Corn,2011,MICHIGAN,26,Herbicides,8,TH,H,4.52,1.88333333333333,2.4,2.4
Corn,2009,MICHIGAN,26,"All Pesticides",8,TA,H,5.145,2.28666666666667,2.25,2.25
Corn,2009,MICHIGAN,26,Herbicides,8,TH,H,5.145,2.28666666666667,2.25,2.25
Corn,2008,MICHIGAN,26,"All Pesticides",8,TA,H,5.145,2.28666666666667,2.25,2.25
Corn,2008,MICHIGAN,26,Herbicides,8,TH,H,5.145,2.28666666666667,2.25,2.25
Corn,2007,MICHIGAN,26,"All Pesticides",8,TA,H,5.145,2.28666666666667,2.25,2.25
Corn,2007,MICHIGAN,26,Herbicides,8,TH,H,5.145,2.28666666666667,2.25,2.25
Corn,2006,MICHIGAN,26,"All Pesticides",8,TA,H,5.145,2.28666666666667,2.25,2.25
Corn,2006,MICHIGAN,26,Herbicides,8,TH,H,5.145,2.28666666666667,2.25,2.25
Corn,2005,MICHIGAN,26,"All Pesticides",8,TA,H,5.145,2.28666666666667,2.25,2.25
Corn,2005,MICHIGAN,26,Herbicides,8,TH,H,5.145,2.28666666666667,2.25,2.25
Corn,2004,MICHIGAN,26,"All Pesticides",8,TA,H,5.14,2.28444444444444,2.25,2.25
Corn,2004,MICHIGAN,26,Herbicides,8,TH,H,4.934,2.19288888888889,2.25,2.25
Corn,2004,MICHIGAN,26,Insecticides,8,TI,I,0.206,0.0915555555555556,2.25,2.25
Corn,2003,MICHIGAN,26,"All Pesticides",8,TA,H,5.14,2.28444444444444,2.25,2.25
Corn,2003,MICHIGAN,26,Herbicides,8,TH,H,4.934,2.19288888888889,2.25,2.25
Corn,2003,MICHIGAN,26,Insecticides,8,TI,I,0.206,0.0915555555555556,2.25,2.25
Corn,2002,MICHIGAN,26,"All Pesticides",8,TA,I,5.232,2.37818181818182,2.2,2.2
Corn,2002,MICHIGAN,26,Herbicides,8,TH,H,4.944,2.24727272727273,2.2,2.2
Corn,2002,MICHIGAN,26,Insecticides,8,TI,I,0.288,0.130909090909091,2.2,2.2
Corn,2001,MICHIGAN,26,"All Pesticides",8,TA,I,5.232,2.37818181818182,2.2,2.2
Corn,2001,MICHIGAN,26,Herbicides,8,TH,H,4.944,2.24727272727273,2.2,2.2
Corn,2001,MICHIGAN,26,Insecticides,8,TI,I,0.288,0.130909090909091,2.2,2.2
Corn,2000,MICHIGAN,26,"All Pesticides",8,TA,H,5.789,2.63136363636364,2.2,2.2
Corn,2000,MICHIGAN,26,Herbicides,8,TH,H,5.658,2.57181818181818,2.2,2.2
Corn,2000,MICHIGAN,26,Insecticides,8,TI,I,0.131,0.0595454545454545,2.2,2.2
Corn,1999,MICHIGAN,26,"All Pesticides",8,TA,I,6.342,2.88272727272727,2.2,2.2
Corn,1999,MICHIGAN,26,Herbicides,8,TH,H,6.128,2.78545454545455,2.2,2.2
Corn,1999,MICHIGAN,26,Insecticides,8,TI,I,0.214,0.0972727272727273,2.2,2.2
Corn,1998,MICHIGAN,26,"All Pesticides",8,TA,H,6.039,2.62565217391304,2.3,2.3
Corn,1998,MICHIGAN,26,Herbicides,8,TH,H,5.74,2.49565217391304,2.3,2.3
Corn,1998,MICHIGAN,26,Insecticides,8,TI,I,0.299,0.13,2.3,2.3
Corn,1997,MICHIGAN,26,"All Pesticides",8,TA,H,7.112,2.8448,2.5,2.5
Corn,1997,MICHIGAN,26,Herbicides,8,TH,H,6.912,2.7648,2.5,2.5
Corn,1997,MICHIGAN,26,Insecticides,8,TI,I,0.2,0.08,2.5,2.5
Corn,1996,MICHIGAN,26,"All Pesticides",8,TA,I,7.568,2.91076923076923,2.6,2.6
Corn,1996,MICHIGAN,26,Herbicides,8,TH,H,7.25,2.78846153846154,2.6,2.6
Corn,1996,MICHIGAN,26,Insecticides,8,TI,I,0.318,0.122307692307692,2.6,2.6
Corn,1995,MICHIGAN,26,"All Pesticides",8,TA,H,7.161,2.92285714285714,2.45,2.45
Corn,1995,MICHIGAN,26,Herbicides,8,TH,H,6.791,2.77183673469388,2.45,2.45
Corn,1995,MICHIGAN,26,Insecticides,8,TI,I,0.37,0.151020408163265,2.45,2.45
Corn,1994,MICHIGAN,26,"All Pesticides",8,TA,I,7.562,3.0248,2.5,2.5
Corn,1994,MICHIGAN,26,Herbicides,8,TH,H,6.987,2.7948,2.5,2.5
Corn,1994,MICHIGAN,26,Insecticides,8,TI,I,0.575,0.23,2.5,2.5
Corn,1993,MICHIGAN,26,"All Pesticides",8,TA,H,7.387,3.07791666666667,2.4,2.4
Corn,1993,MICHIGAN,26,Herbicides,8,TH,H,6.778,2.82416666666667,2.4,2.4
Corn,1993,MICHIGAN,26,Insecticides,8,TI,I,0.609,0.25375,2.4,2.4
Corn,1992,MICHIGAN,26,"All Pesticides",8,TA,I,7.82,2.8962962962963,2.7,2.7
Corn,1992,MICHIGAN,26,Herbicides,8,TH,H,7.292,2.70074074074074,2.7,2.7
Corn,1992,MICHIGAN,26,Insecticides,8,TI,I,0.528,0.195555555555556,2.7,2.7
Corn,1991,MICHIGAN,26,"All Pesticides",8,TA,I,7.797,2.99884615384615,2.6,2.6
Corn,1991,MICHIGAN,26,Herbicides,8,TH,H,7.174,2.75923076923077,2.6,2.6
Corn,1991,MICHIGAN,26,Insecticides,8,TI,I,0.623,0.239615384615385,2.6,2.6
Corn,2014,MINNESOTA,27,"All Pesticides",8,TA,H,11.727,1.52298701298701,7.7,7.7
Corn,2014,MINNESOTA,27,Herbicides,8,TH,H,11.619,1.50896103896104,7.7,7.7
Corn,2014,MINNESOTA,27,Insecticides,8,TI,I,0.108,0.014025974025974,7.7,7.7
Corn,2013,MINNESOTA,27,"All Pesticides",8,TA,H,11.727,1.52298701298701,7.7,7.7
Corn,2013,MINNESOTA,27,Herbicides,8,TH,H,11.619,1.50896103896104,7.7,7.7
Corn,2013,MINNESOTA,27,Insecticides,8,TI,I,0.108,0.014025974025974,7.7,7.7
Corn,2012,MINNESOTA,27,"All Pesticides",8,TA,H,11.727,1.52298701298701,7.7,7.7
Corn,2012,MINNESOTA,27,Herbicides,8,TH,H,11.619,1.50896103896104,7.7,7.7
Corn,2012,MINNESOTA,27,Insecticides,8,TI,I,0.108,0.014025974025974,7.7,7.7
Corn,2011,MINNESOTA,27,"All Pesticides",8,TA,H,11.727,1.52298701298701,7.7,7.7
Corn,2011,MINNESOTA,27,Herbicides,8,TH,H,11.619,1.50896103896104,7.7,7.7
Corn,2011,MINNESOTA,27,Insecticides,8,TI,I,0.108,0.014025974025974,7.7,7.7
Corn,2009,MINNESOTA,27,"All Pesticides",8,TA,H,10.575,1.4486301369863,7.3,7.3
Corn,2009,MINNESOTA,27,Herbicides,8,TH,H,10.361,1.41931506849315,7.3,7.3
Corn,2009,MINNESOTA,27,Insecticides,8,TI,I,0.214,0.0293150684931507,7.3,7.3
Corn,2008,MINNESOTA,27,"All Pesticides",8,TA,H,10.575,1.4486301369863,7.3,7.3
Corn,2008,MINNESOTA,27,Herbicides,8,TH,H,10.361,1.41931506849315,7.3,7.3
Corn,2008,MINNESOTA,27,Insecticides,8,TI,I,0.214,0.0293150684931507,7.3,7.3
Corn,2007,MINNESOTA,27,"All Pesticides",8,TA,H,10.575,1.4486301369863,7.3,7.3
Corn,2007,MINNESOTA,27,Herbicides,8,TH,H,10.361,1.41931506849315,7.3,7.3
Corn,2007,MINNESOTA,27,Insecticides,8,TI,I,0.214,0.0293150684931507,7.3,7.3
Corn,2006,MINNESOTA,27,"All Pesticides",8,TA,H,10.575,1.4486301369863,7.3,7.3
Corn,2006,MINNESOTA,27,Herbicides,8,TH,H,10.361,1.41931506849315,7.3,7.3
Corn,2006,MINNESOTA,27,Insecticides,8,TI,I,0.214,0.0293150684931507,7.3,7.3
Corn,2005,MINNESOTA,27,"All Pesticides",8,TA,H,10.575,1.4486301369863,7.3,7.3
Corn,2005,MINNESOTA,27,Herbicides,8,TH,H,10.361,1.41931506849315,7.3,7.3
Corn,2005,MINNESOTA,27,Insecticides,8,TI,I,0.214,0.0293150684931507,7.3,7.3
Corn,2004,MINNESOTA,27,"All Pesticides",8,TA,H,11.381,1.58069444444444,7.2,7.2
Corn,2004,MINNESOTA,27,Herbicides,8,TH,H,10.927,1.51763888888889,7.2,7.2
Corn,2004,MINNESOTA,27,Insecticides,8,TI,I,0.454,0.0630555555555556,7.2,7.2
Corn,2003,MINNESOTA,27,"All Pesticides",8,TA,H,11.381,1.58069444444444,7.2,7.2
Corn,2003,MINNESOTA,27,Herbicides,8,TH,H,10.927,1.51763888888889,7.2,7.2
Corn,2003,MINNESOTA,27,Insecticides,8,TI,I,0.454,0.0630555555555556,7.2,7.2
Corn,2002,MINNESOTA,27,"All Pesticides",8,TA,H,10.214,1.41861111111111,7.2,7.2
Corn,2002,MINNESOTA,27,Herbicides,8,TH,H,10.002,1.38916666666667,7.2,7.2
Corn,2002,MINNESOTA,27,Insecticides,8,TI,I,0.212,0.0294444444444444,7.2,7.2
Corn,2001,MINNESOTA,27,"All Pesticides",8,TA,I,13.815,1.91875,7.2,7.2
Corn,2001,MINNESOTA,27,Herbicides,8,TH,H,13.446,1.97735294117647,6.8,6.8
Corn,2001,MINNESOTA,27,Insecticides,8,TI,I,0.369,0.05125,7.2,7.2
Corn,2000,MINNESOTA,27,"All Pesticides",8,TA,I,10.966,1.52305555555556,7.2,7.2
Corn,2000,MINNESOTA,27,Herbicides,8,TH,H,10.597,1.47180555555556,7.2,7.2
Corn,2000,MINNESOTA,27,Insecticides,8,TI,I,0.369,0.05125,7.2,7.2
Corn,1999,MINNESOTA,27,"All Pesticides",8,TA,H,11.406,1.60647887323944,7.1,7.1
Corn,1999,MINNESOTA,27,Herbicides,8,TH,H,11.126,1.56704225352113,7.1,7.1
Corn,1999,MINNESOTA,27,Insecticides,8,TI,I,0.28,0.0394366197183099,7.1,7.1
Corn,1998,MINNESOTA,27,"All Pesticides",8,TA,I,14.601,2.00013698630137,7.3,7.3
Corn,1998,MINNESOTA,27,Herbicides,8,TH,H,14.248,1.95178082191781,7.3,7.3
Corn,1998,MINNESOTA,27,Insecticides,8,TI,I,0.353,0.0483561643835616,7.3,7.3
Corn,1997,MINNESOTA,27,"All Pesticides",8,TA,I,14.247,2.03528571428571,7.0,7.0
Corn,1997,MINNESOTA,27,Herbicides,8,TH,H,13.956,1.99371428571429,7.0,7.0
Corn,1997,MINNESOTA,27,Insecticides,8,TI,I,0.291,0.0415714285714286,7.0,7.0
Corn,1996,MINNESOTA,27,"All Pesticides",8,TA,I,18.433,2.45773333333333,7.5,7.5
Corn,1996,MINNESOTA,27,Herbicides,8,TH,H,17.819,2.37586666666667,7.5,7.5
Corn,1996,MINNESOTA,27,Insecticides,8,TI,I,0.614,0.0818666666666667,7.5,7.5
Corn,1995,MINNESOTA,27,"All Pesticides",8,TA,I,16.222,2.42119402985075,6.7,6.7
Corn,1995,MINNESOTA,27,Herbicides,8,TH,H,15.822,2.36149253731343,6.7,6.7
Corn,1995,MINNESOTA,27,Insecticides,8,TI,I,0.4,0.0597014925373134,6.7,6.7
Corn,1994,MINNESOTA,27,"All Pesticides",8,TA,H,15.709,2.24414285714286,7.0,7.0
Corn,1994,MINNESOTA,27,Herbicides,8,TH,H,15.218,2.174,7.0,7.0
Corn,1994,MINNESOTA,27,Insecticides,8,TI,I,0.491,0.0701428571428571,7.0,7.0
Corn,1993,MINNESOTA,27,"All Pesticides",8,TA,I,16.098,2.5552380952381,6.3,6.3
Corn,1993,MINNESOTA,27,Herbicides,8,TH,H,15.788,2.50603174603175,6.3,6.3
Corn,1993,MINNESOTA,27,Insecticides,8,TI,I,0.31,0.0492063492063492,6.3,6.3
Corn,1992,MINNESOTA,27,"All Pesticides",8,TA,H,18.736,2.60222222222222,7.2,7.2
Corn,1992,MINNESOTA,27,Herbicides,8,TH,H,17.962,2.49472222222222,7.2,7.2
Corn,1992,MINNESOTA,27,Insecticides,8,TI,I,0.774,0.1075,7.2,7.2
Corn,1991,MINNESOTA,27,"All Pesticides",8,TA,H,18.147,2.74954545454545,6.6,6.6
Corn,1991,MINNESOTA,27,Herbicides,8,TH,H,17.468,2.64666666666667,6.6,6.6
Corn,1991,MINNESOTA,27,Insecticides,8,TI,I,0.679,0.102878787878788,6.6,6.6
Corn,2014,MISSOURI,29,"All Pesticides",8,TA,I,8.311,2.6384126984127,3.15,3.15
Corn,2014,MISSOURI,29,Herbicides,8,TH,H,8.304,2.63619047619048,3.15,3.15
Corn,2014,MISSOURI,29,Insecticides,8,TI,I,0.007,0.00222222222222222,3.15,3.15
Corn,2013,MISSOURI,29,"All Pesticides",8,TA,I,8.311,2.6384126984127,3.15,3.15
Corn,2013,MISSOURI,29,Herbicides,8,TH,H,8.304,2.63619047619048,3.15,3.15
Corn,2013,MISSOURI,29,Insecticides,8,TI,I,0.007,0.00222222222222222,3.15,3.15
Corn,2012,MISSOURI,29,"All Pesticides",8,TA,I,8.311,2.6384126984127,3.15,3.15
Corn,2012,MISSOURI,29,Herbicides,8,TH,H,8.304,2.63619047619048,3.15,3.15
Corn,2012,MISSOURI,29,Insecticides,8,TI,I,0.007,0.00222222222222222,3.15,3.15
Corn,2011,MISSOURI,29,"All Pesticides",8,TA,I,8.311,2.6384126984127,3.15,3.15
Corn,2011,MISSOURI,29,Herbicides,8,TH,H,8.304,2.63619047619048,3.15,3.15
Corn,2011,MISSOURI,29,Insecticides,8,TI,I,0.007,0.00222222222222222,3.15,3.15
Corn,2009,MISSOURI,29,"All Pesticides",8,TA,I,7.748,2.49935483870968,3.1,3.1
Corn,2009,MISSOURI,29,Herbicides,8,TH,H,7.707,2.48612903225806,3.1,3.1
Corn,2009,MISSOURI,29,Insecticides,8,TI,I,0.041,0.0132258064516129,3.1,3.1
Corn,2008,MISSOURI,29,"All Pesticides",8,TA,I,7.748,2.49935483870968,3.1,3.1
Corn,2008,MISSOURI,29,Herbicides,8,TH,H,7.707,2.48612903225806,3.1,3.1
Corn,2008,MISSOURI,29,Insecticides,8,TI,I,0.041,0.0132258064516129,3.1,3.1
Corn,2007,MISSOURI,29,"All Pesticides",8,TA,I,7.748,2.49935483870968,3.1,3.1
Corn,2007,MISSOURI,29,Herbicides,8,TH,H,7.707,2.48612903225806,3.1,3.1
Corn,2007,MISSOURI,29,Insecticides,8,TI,I,0.041,0.0132258064516129,3.1,3.1
Corn,2006,MISSOURI,29,"All Pesticides",8,TA,I,7.748,2.49935483870968,3.1,3.1
Corn,2006,MISSOURI,29,Herbicides,8,TH,H,7.707,2.48612903225806,3.1,3.1
Corn,2006,MISSOURI,29,Insecticides,8,TI,I,0.041,0.0132258064516129,3.1,3.1
Corn,2005,MISSOURI,29,"All Pesticides",8,TA,I,7.748,2.49935483870968,3.1,3.1
Corn,2005,MISSOURI,29,Herbicides,8,TH,H,7.707,2.48612903225806,3.1,3.1
Corn,2005,MISSOURI,29,Insecticides,8,TI,I,0.041,0.0132258064516129,3.1,3.1
Corn,2004,MISSOURI,29,"All Pesticides",8,TA,H,7.872,2.71448275862069,2.9,2.9
Corn,2004,MISSOURI,29,Herbicides,8,TH,H,7.733,2.66655172413793,2.9,2.9
Corn,2004,MISSOURI,29,Insecticides,8,TI,I,0.139,0.0479310344827586,2.9,2.9
Corn,2003,MISSOURI,29,"All Pesticides",8,TA,H,7.872,2.71448275862069,2.9,2.9
Corn,2003,MISSOURI,29,Herbicides,8,TH,H,7.733,2.66655172413793,2.9,2.9
Corn,2003,MISSOURI,29,Insecticides,8,TI,I,0.139,0.0479310344827586,2.9,2.9
Corn,2002,MISSOURI,29,"All Pesticides",8,TA,H,7.399,2.74037037037037,2.7,2.7
Corn,2002,MISSOURI,29,Herbicides,8,TH,H,7.232,2.67851851851852,2.7,2.7
Corn,2002,MISSOURI,29,Insecticides,8,TI,I,0.167,0.0618518518518519,2.7,2.7
Corn,2001,MISSOURI,29,"All Pesticides",8,TA,H,7.399,2.74037037037037,2.7,2.7
Corn,2001,MISSOURI,29,Herbicides,8,TH,H,7.232,2.67851851851852,2.7,2.7
Corn,2001,MISSOURI,29,Insecticides,8,TI,I,0.167,0.0618518518518519,2.7,2.7
Corn,2000,MISSOURI,29,"All Pesticides",8,TA,I,6.102,2.14105263157895,2.85,2.85
Corn,2000,MISSOURI,29,Herbicides,8,TH,H,5.988,2.10105263157895,2.85,2.85
Corn,2000,MISSOURI,29,Insecticides,8,TI,I,0.114,0.04,2.85,2.85
Corn,1999,MISSOURI,29,"All Pesticides",8,TA,I,8.206,3.09660377358491,2.65,2.65
Corn,1999,MISSOURI,29,Herbicides,8,TH,H,7.988,3.01433962264151,2.65,2.65
Corn,1999,MISSOURI,29,Insecticides,8,TI,I,0.218,0.0822641509433962,2.65,2.65
Corn,1998,MISSOURI,29,"All Pesticides",8,TA,H,8.009,3.0222641509434,2.65,2.65
Corn,1998,MISSOURI,29,Herbicides,8,TH,H,7.718,2.91245283018868,2.65,2.65
Corn,1998,MISSOURI,29,Insecticides,8,TI,I,0.291,0.109811320754717,2.65,2.65
Corn,1997,MISSOURI,29,"All Pesticides",8,TA,H,8.678,3.21407407407407,2.7,2.7
Corn,1997,MISSOURI,29,Herbicides,8,TH,H,8.203,3.03814814814815,2.7,2.7
Corn,1997,MISSOURI,29,Insecticides,8,TI,I,0.475,0.175925925925926,2.7,2.7
Corn,1996,MISSOURI,29,"All Pesticides",8,TA,H,8.039,3.03358490566038,2.65,2.65
Corn,1996,MISSOURI,29,Herbicides,8,TH,H,7.547,2.84792452830189,2.65,2.65
Corn,1996,MISSOURI,29,Insecticides,8,TI,I,0.492,0.185660377358491,2.65,2.65
Corn,1995,MISSOURI,29,"All Pesticides",8,TA,H,4.685,2.83939393939394,1.65,1.65
Corn,1995,MISSOURI,29,Herbicides,8,TH,H,4.443,2.69272727272727,1.65,1.65
Corn,1995,MISSOURI,29,Insecticides,8,TI,I,0.242,0.146666666666667,1.65,1.65
Corn,1994,MISSOURI,29,"All Pesticides",8,TA,H,6.919,2.88291666666667,2.4,2.4
Corn,1994,MISSOURI,29,Herbicides,8,TH,H,6.749,2.81208333333333,2.4,2.4
Corn,1994,MISSOURI,29,Insecticides,8,TI,I,0.17,0.0708333333333333,2.4,2.4
Corn,1993,MISSOURI,29,"All Pesticides",8,TA,I,6.065,2.75681818181818,2.2,2.2
Corn,1993,MISSOURI,29,Herbicides,8,TH,H,5.868,2.66727272727273,2.2,2.2
Corn,1993,MISSOURI,29,Insecticides,8,TI,I,0.197,0.0895454545454545,2.2,2.2
Corn,1992,MISSOURI,29,"All Pesticides",8,TA,H,7.597,3.0388,2.5,2.5
Corn,1992,MISSOURI,29,Herbicides,8,TH,H,7.179,2.8716,2.5,2.5
Corn,1992,MISSOURI,29,Insecticides,8,TI,I,0.418,0.1672,2.5,2.5
Corn,1991,MISSOURI,29,"All Pesticides",8,TA,H,6.947,3.0204347826087,2.3,2.3
Corn,1991,MISSOURI,29,Herbicides,8,TH,H,6.667,2.89869565217391,2.3,2.3
Corn,1991,MISSOURI,29,Insecticides,8,TI,I,0.28,0.121739130434783,2.3,2.3
Corn,2014,NATIONAL,0,"All Pesticides",8,TA,I,184.525,2.25925925925926,88.192,81.675
Corn,2014,NATIONAL,0,Fungicides,8,TF,F,0.744,0.00910927456382002,88.192,81.675
Corn,2014,NATIONAL,0,Herbicides,8,TH,H,182.15,2.23018059381696,88.192,81.675
Corn,2014,NATIONAL,0,Insecticides,8,TI,I,1.631,0.0199693908784818,88.192,81.675
Corn,2014,NATIONAL,0,"Other Pesticides",8,TO,O,,,88.192,81.675
Corn,2013,NATIONAL,0,"All Pesticides",8,TA,I,184.525,2.25925925925926,88.192,81.675
Corn,2013,NATIONAL,0,Fungicides,8,TF,F,0.744,0.00910927456382002,88.192,81.675
Corn,2013,NATIONAL,0,Herbicides,8,TH,H,182.15,2.23018059381696,88.192,81.675
Corn,2013,NATIONAL,0,Insecticides,8,TI,I,1.631,0.0199693908784818,88.192,81.675
Corn,2013,NATIONAL,0,"Other Pesticides",8,TO,O,,,88.192,81.675
Corn,2012,NATIONAL,0,"All Pesticides",8,TA,I,184.525,2.25925925925926,88.192,81.675
Corn,2012,NATIONAL,0,Fungicides,8,TF,F,0.744,0.00910927456382002,88.192,81.675
Corn,2012,NATIONAL,0,Herbicides,8,TH,H,182.15,2.23018059381696,88.192,81.675
Corn,2012,NATIONAL,0,Insecticides,8,TI,I,1.631,0.0199693908784818,88.192,81.675
Corn,2012,NATIONAL,0,"Other Pesticides",8,TO,O,,,88.192,81.675
Corn,2011,NATIONAL,0,"All Pesticides",8,TA,I,184.525,2.25925925925926,88.192,81.675
Corn,2011,NATIONAL,0,Fungicides,8,TF,F,0.744,0.00910927456382002,88.192,81.675
Corn,2011,NATIONAL,0,Herbicides,8,TH,H,182.15,2.23018059381696,88.192,81.675
Corn,2011,NATIONAL,0,Insecticides,8,TI,I,1.631,0.0199693908784818,88.192,81.675
Corn,2011,NATIONAL,0,"Other Pesticides",8,TO,O,,,88.192,81.675
Corn,2009,NATIONAL,0,"All Pesticides",8,TA,H,162.517,2.12523865568197,81.779,76.47
Corn,2009,NATIONAL,0,Fungicides,8,TF,F,0.093,0.00121616320125539,81.779,76.47
Corn,2009,NATIONAL,0,Herbicides,8,TH,H,157.575,2.06061200470773,81.779,76.47
Corn,2009,NATIONAL,0,Insecticides,8,TI,I,4.849,0.0634104877729829,81.779,76.47
Corn,2008,NATIONAL,0,"All Pesticides",8,TA,H,162.517,2.12523865568197,81.779,76.47
Corn,2008,NATIONAL,0,Fungicides,8,TF,F,0.093,0.00121616320125539,81.779,76.47
Corn,2008,NATIONAL,0,Herbicides,8,TH,H,157.575,2.06061200470773,81.779,76.47
Corn,2008,NATIONAL,0,Insecticides,8,TI,I,4.849,0.0634104877729829,81.779,76.47
Corn,2007,NATIONAL,0,"All Pesticides",8,TA,H,162.517,2.12523865568197,81.779,76.47
Corn,2007,NATIONAL,0,Fungicides,8,TF,F,0.093,0.00121616320125539,81.779,76.47
Corn,2007,NATIONAL,0,Herbicides,8,TH,H,157.575,2.06061200470773,81.779,76.47
Corn,2007,NATIONAL,0,Insecticides,8,TI,I,4.849,0.0634104877729829,81.779,76.47
Corn,2006,NATIONAL,0,"All Pesticides",8,TA,H,162.517,2.12523865568197,81.779,76.47
Corn,2006,NATIONAL,0,Fungicides,8,TF,F,0.093,0.00121616320125539,81.779,76.47
Corn,2006,NATIONAL,0,Herbicides,8,TH,H,157.575,2.06061200470773,81.779,76.47
Corn,2006,NATIONAL,0,Insecticides,8,TI,I,4.849,0.0634104877729829,81.779,76.47
Corn,2005,NATIONAL,0,"All Pesticides",8,TA,H,162.517,2.12523865568197,81.779,76.47
Corn,2005,NATIONAL,0,Fungicides,8,TF,F,0.093,0.00121616320125539,81.779,76.47
Corn,2005,NATIONAL,0,Herbicides,8,TH,H,157.575,2.06061200470773,81.779,76.47
Corn,2005,NATIONAL,0,Insecticides,8,TI,I,4.849,0.0634104877729829,81.779,76.47
Corn,2004,NATIONAL,0,"All Pesticides",8,TA,F,156.833,2.15963921784632,78.603,72.62
Corn,2004,NATIONAL,0,Fungicides,8,TF,F,0.232,0.00319471220049573,78.603,72.62
Corn,2004,NATIONAL,0,Herbicides,8,TH,H,149.136,2.05364913247039,78.603,72.62
Corn,2004,NATIONAL,0,Insecticides,8,TI,I,7.465,0.102795373175434,78.603,72.62
Corn,2003,NATIONAL,0,"All Pesticides",8,TA,F,156.833,2.15963921784632,78.603,72.62
Corn,2003,NATIONAL,0,Fungicides,8,TF,F,0.232,0.00319471220049573,78.603,72.62
Corn,2003,NATIONAL,0,Herbicides,8,TH,H,149.136,2.05364913247039,78.603,72.62
Corn,2003,NATIONAL,0,Insecticides,8,TI,I,7.465,0.102795373175434,78.603,72.62
Corn,2002,NATIONAL,0,"All Pesticides",8,TA,F,99.722,1.61232012934519,79.537,61.85
Corn,2002,NATIONAL,0,Fungicides,8,TF,F,0.014,0.000226354082457559,79.537,61.85
Corn,2002,NATIONAL,0,Herbicides,8,TH,H,95.777,1.87064453125,78.894,51.2
Corn,2002,NATIONAL,0,Insecticides,8,TI,I,3.931,0.07677734375,78.894,51.2
Corn,2001,NATIONAL,0,"All Pesticides",8,TA,F,166.257,2.68806790622474,79.537,61.85
Corn,2001,NATIONAL,0,Fungicides,8,TF,F,0.014,0.000226354082457559,79.537,61.85
Corn,2001,NATIONAL,0,Herbicides,8,TH,H,157.239,2.22418841502228,75.702,70.695
Corn,2001,NATIONAL,0,Insecticides,8,TI,I,9.004,0.127364028573449,75.702,70.695
Corn,2000,NATIONAL,0,"All Pesticides",8,TA,F,163.289,2.64008084074373,79.537,61.85
Corn,2000,NATIONAL,0,Fungicides,8,TF,F,0.014,0.000226354082457559,79.537,61.85
Corn,2000,NATIONAL,0,Herbicides,8,TH,H,153.464,2.0774874780019,79.551,73.87
Corn,2000,NATIONAL,0,Insecticides,8,TI,I,9.811,0.132814403682144,79.551,73.87
Corn,1999,NATIONAL,0,"All Pesticides",8,TA,F,164.188,2.65461600646726,79.537,61.85
Corn,1999,NATIONAL,0,Fungicides,8,TF,F,0.014,0.000226354082457559,79.537,61.85
Corn,1999,NATIONAL,0,Herbicides,8,TH,H,154.059,2.25562225475842,77.386,68.3
Corn,1999,NATIONAL,0,Insecticides,8,TI,I,10.115,0.14809663250366,77.386,68.3
Corn,1998,NATIONAL,0,"All Pesticides",8,TA,F,189.144,3.0581083265966,79.537,61.85
Corn,1998,NATIONAL,0,Fungicides,8,TF,F,0.014,0.000226354082457559,79.537,61.85
Corn,1998,NATIONAL,0,Herbicides,8,TH,H,177.012,2.47950693374422,80.165,71.39
Corn,1998,NATIONAL,0,Insecticides,8,TI,I,12.118,0.169743661577252,80.165,71.39
Corn,1997,NATIONAL,0,"All Pesticides",8,TA,F,177.635,2.87202910266774,79.537,61.85
Corn,1997,NATIONAL,0,Fungicides,8,TF,F,0.014,0.000226354082457559,79.537,61.85
Corn,1997,NATIONAL,0,Herbicides,8,TH,H,164.051,2.65240097008892,79.537,61.85
Corn,1997,NATIONAL,0,Insecticides,8,TI,I,13.57,0.219401778496362,79.537,61.85
Corn,1996,NATIONAL,0,"All Pesticides",8,TA,I,201.212,2.86626780626781,79.229,70.2
Corn,1996,NATIONAL,0,Fungicides,8,TF,F,0.017,0.000264344580936091,71.479,64.31
Corn,1996,NATIONAL,0,Herbicides,8,TH,H,186.977,2.66349002849003,79.229,70.2
Corn,1996,NATIONAL,0,Insecticides,8,TI,I,14.218,0.202535612535613,79.229,70.2
Corn,1995,NATIONAL,0,"All Pesticides",8,TA,I,181.116,2.81629606593065,71.479,64.31
Corn,1995,NATIONAL,0,Fungicides,8,TF,F,0.017,0.000264344580936091,71.479,64.31
Corn,1995,NATIONAL,0,Herbicides,8,TH,H,167.642,2.60677966101695,71.479,64.31
Corn,1995,NATIONAL,0,Insecticides,8,TI,I,13.457,0.209252060332763,71.479,64.31
Corn,1994,NATIONAL,0,"All Pesticides",8,TA,I,183.916,2.9497353648757,78.921,62.35
Corn,1994,NATIONAL,0,Herbicides,8,TH,H,170.221,2.7300882117081,78.921,62.35
Corn,1994,NATIONAL,0,Insecticides,8,TI,I,13.695,0.219647153167602,78.921,62.35
Corn,1993,NATIONAL,0,"All Pesticides",8,TA,I,198.514,3.02658941911877,73.239,65.59
Corn,1993,NATIONAL,0,Herbicides,8,TH,H,181.876,2.77292270163135,73.239,65.59
Corn,1993,NATIONAL,0,Insecticides,8,TI,I,16.638,0.253666717487422,73.239,65.59
Corn,1992,NATIONAL,0,"All Pesticides",8,TA,I,217.486,3.04708931698774,79.311,71.375
Corn,1992,NATIONAL,0,Herbicides,8,TH,H,199.084,2.78926795096322,79.311,71.375
Corn,1992,NATIONAL,0,Insecticides,8,TI,I,18.402,0.257821366024518,79.311,71.375
Corn,1991,NATIONAL,0,"All Pesticides",8,TA,I,210.401,3.06796442111403,75.957,68.58
Corn,1991,NATIONAL,0,Herbicides,8,TH,H,189.469,2.7627442403033,75.957,68.58
Corn,1991,NATIONAL,0,Insecticides,8,TI,I,20.932,0.305220180810732,75.957,68.58
Corn,2014,NEBRASKA,31,"All Pesticides",8,TA,H,20.749,2.26765027322404,9.15,9.15
Corn,2014,NEBRASKA,31,Fungicides,8,TF,F,0.1,0.0109289617486339,9.15,9.15
Corn,2014,NEBRASKA,31,Herbicides,8,TH,H,20.418,2.23147540983607,9.15,9.15
Corn,2014,NEBRASKA,31,Insecticides,8,TI,I,0.231,0.0252459016393443,9.15,9.15
Corn,2013,NEBRASKA,31,"All Pesticides",8,TA,H,20.749,2.26765027322404,9.15,9.15
Corn,2013,NEBRASKA,31,Fungicides,8,TF,F,0.1,0.0109289617486339,9.15,9.15
Corn,2013,NEBRASKA,31,Herbicides,8,TH,H,20.418,2.23147540983607,9.15,9.15
Corn,2013,NEBRASKA,31,Insecticides,8,TI,I,0.231,0.0252459016393443,9.15,9.15
Corn,2012,NEBRASKA,31,"All Pesticides",8,TA,H,20.749,2.26765027322404,9.15,9.15
Corn,2012,NEBRASKA,31,Fungicides,8,TF,F,0.1,0.0109289617486339,9.15,9.15
Corn,2012,NEBRASKA,31,Herbicides,8,TH,H,20.418,2.23147540983607,9.15,9.15
Corn,2012,NEBRASKA,31,Insecticides,8,TI,I,0.231,0.0252459016393443,9.15,9.15
Corn,2011,NEBRASKA,31,"All Pesticides",8,TA,H,20.749,2.26765027322404,9.15,9.15
Corn,2011,NEBRASKA,31,Fungicides,8,TF,F,0.1,0.0109289617486339,9.15,9.15
Corn,2011,NEBRASKA,31,Herbicides,8,TH,H,20.418,2.23147540983607,9.15,9.15
Corn,2011,NEBRASKA,31,Insecticides,8,TI,I,0.231,0.0252459016393443,9.15,9.15
Corn,2009,NEBRASKA,31,"All Pesticides",8,TA,H,18.872,2.22023529411765,8.5,8.5
Corn,2009,NEBRASKA,31,Herbicides,8,TH,H,18.416,2.16658823529412,8.5,8.5
Corn,2009,NEBRASKA,31,Insecticides,8,TI,I,0.456,0.0536470588235294,8.5,8.5
Corn,2008,NEBRASKA,31,"All Pesticides",8,TA,H,18.872,2.22023529411765,8.5,8.5
Corn,2008,NEBRASKA,31,Herbicides,8,TH,H,18.416,2.16658823529412,8.5,8.5
Corn,2008,NEBRASKA,31,Insecticides,8,TI,I,0.456,0.0536470588235294,8.5,8.5
Corn,2007,NEBRASKA,31,"All Pesticides",8,TA,H,18.872,2.22023529411765,8.5,8.5
Corn,2007,NEBRASKA,31,Herbicides,8,TH,H,18.416,2.16658823529412,8.5,8.5
Corn,2007,NEBRASKA,31,Insecticides,8,TI,I,0.456,0.0536470588235294,8.5,8.5
Corn,2006,NEBRASKA,31,"All Pesticides",8,TA,H,18.872,2.22023529411765,8.5,8.5
Corn,2006,NEBRASKA,31,Herbicides,8,TH,H,18.416,2.16658823529412,8.5,8.5
Corn,2006,NEBRASKA,31,Insecticides,8,TI,I,0.456,0.0536470588235294,8.5,8.5
Corn,2005,NEBRASKA,31,"All Pesticides",8,TA,H,18.872,2.22023529411765,8.5,8.5
Corn,2005,NEBRASKA,31,Herbicides,8,TH,H,18.416,2.16658823529412,8.5,8.5
Corn,2005,NEBRASKA,31,Insecticides,8,TI,I,0.456,0.0536470588235294,8.5,8.5
Corn,2004,NEBRASKA,31,"All Pesticides",8,TA,I,15.951,1.96925925925926,8.1,8.1
Corn,2004,NEBRASKA,31,Herbicides,8,TH,H,15.209,1.87765432098765,8.1,8.1
Corn,2004,NEBRASKA,31,Insecticides,8,TI,I,0.742,0.0916049382716049,8.1,8.1
Corn,2003,NEBRASKA,31,"All Pesticides",8,TA,I,15.951,1.96925925925926,8.1,8.1
Corn,2003,NEBRASKA,31,Herbicides,8,TH,H,15.209,1.87765432098765,8.1,8.1
Corn,2003,NEBRASKA,31,Insecticides,8,TI,I,0.742,0.0916049382716049,8.1,8.1
Corn,2002,NEBRASKA,31,"All Pesticides",8,TA,I,13.855,1.64940476190476,8.4,8.4
Corn,2002,NEBRASKA,31,Herbicides,8,TH,H,12.869,1.53202380952381,8.4,8.4
Corn,2002,NEBRASKA,31,Insecticides,8,TI,I,0.986,0.117380952380952,8.4,8.4
Corn,2001,NEBRASKA,31,"All Pesticides",8,TA,I,16.263,2.00777777777778,8.1,8.1
Corn,2001,NEBRASKA,31,Herbicides,8,TH,H,15.159,1.87148148148148,8.1,8.1
Corn,2001,NEBRASKA,31,Insecticides,8,TI,I,1.104,0.136296296296296,8.1,8.1
Corn,2000,NEBRASKA,31,"All Pesticides",8,TA,H,18.332,2.15670588235294,8.5,8.5
Corn,2000,NEBRASKA,31,Herbicides,8,TH,H,16.862,1.98376470588235,8.5,8.5
Corn,2000,NEBRASKA,31,Insecticides,8,TI,I,1.47,0.172941176470588,8.5,8.5
Corn,1999,NEBRASKA,31,"All Pesticides",8,TA,H,21.042,2.44674418604651,8.6,8.6
Corn,1999,NEBRASKA,31,Herbicides,8,TH,H,19.747,2.29616279069767,8.6,8.6
Corn,1999,NEBRASKA,31,Insecticides,8,TI,I,1.295,0.150581395348837,8.6,8.6
Corn,1998,NEBRASKA,31,"All Pesticides",8,TA,H,21.126,2.40068181818182,8.8,8.8
Corn,1998,NEBRASKA,31,Herbicides,8,TH,H,19.459,2.21125,8.8,8.8
Corn,1998,NEBRASKA,31,Insecticides,8,TI,I,1.667,0.189431818181818,8.8,8.8
Corn,1997,NEBRASKA,31,"All Pesticides",8,TA,I,23.501,2.64056179775281,8.9,8.9
Corn,1997,NEBRASKA,31,Herbicides,8,TH,H,19.97,2.2438202247191,8.9,8.9
Corn,1997,NEBRASKA,31,Insecticides,8,TI,I,3.531,0.396741573033708,8.9,8.9
Corn,1996,NEBRASKA,31,"All Pesticides",8,TA,I,22.885,2.69235294117647,8.5,8.5
Corn,1996,NEBRASKA,31,Herbicides,8,TH,H,19.817,2.33141176470588,8.5,8.5
Corn,1996,NEBRASKA,31,Insecticides,8,TI,I,3.068,0.360941176470588,8.5,8.5
Corn,1995,NEBRASKA,31,"All Pesticides",8,TA,I,21.908,2.7385,8.0,8.0
Corn,1995,NEBRASKA,31,Herbicides,8,TH,H,18.804,2.3505,8.0,8.0
Corn,1995,NEBRASKA,31,Insecticides,8,TI,I,3.104,0.388,8.0,8.0
Corn,1994,NEBRASKA,31,"All Pesticides",8,TA,H,22.203,2.58174418604651,8.6,8.6
Corn,1994,NEBRASKA,31,Herbicides,8,TH,H,18.735,2.17848837209302,8.6,8.6
Corn,1994,NEBRASKA,31,Insecticides,8,TI,I,3.468,0.403255813953488,8.6,8.6
Corn,1993,NEBRASKA,31,"All Pesticides",8,TA,H,20.663,2.582875,8.0,8.0
Corn,1993,NEBRASKA,31,Herbicides,8,TH,H,17.407,2.175875,8.0,8.0
Corn,1993,NEBRASKA,31,Insecticides,8,TI,I,3.256,0.407,8.0,8.0
Corn,1992,NEBRASKA,31,"All Pesticides",8,TA,I,21.564,2.59807228915663,8.3,8.3
Corn,1992,NEBRASKA,31,Herbicides,8,TH,H,17.524,2.11132530120482,8.3,8.3
Corn,1992,NEBRASKA,31,Insecticides,8,TI,I,4.04,0.486746987951807,8.3,8.3
Corn,1991,NEBRASKA,31,"All Pesticides",8,TA,I,22.071,2.69158536585366,8.2,8.2
Corn,1991,NEBRASKA,31,Herbicides,8,TH,H,17.352,2.11609756097561,8.2,8.2
Corn,1991,NEBRASKA,31,Insecticides,8,TI,I,4.719,0.575487804878049,8.2,8.2
Corn,2014,"NEW YORK",36,"All Pesticides",8,TA,H,2.744,2.61333333333333,1.05,1.05
Corn,2014,"NEW YORK",36,Herbicides,8,TH,H,2.721,2.59142857142857,1.05,1.05
Corn,2014,"NEW YORK",36,Insecticides,8,TI,I,0.023,0.0219047619047619,1.05,1.05
Corn,2013,"NEW YORK",36,"All Pesticides",8,TA,H,2.744,2.61333333333333,1.05,1.05
Corn,2013,"NEW YORK",36,Herbicides,8,TH,H,2.721,2.59142857142857,1.05,1.05
Corn,2013,"NEW YORK",36,Insecticides,8,TI,I,0.023,0.0219047619047619,1.05,1.05
Corn,2012,"NEW YORK",36,"All Pesticides",8,TA,H,2.744,2.61333333333333,1.05,1.05
Corn,2012,"NEW YORK",36,Herbicides,8,TH,H,2.721,2.59142857142857,1.05,1.05
Corn,2012,"NEW YORK",36,Insecticides,8,TI,I,0.023,0.0219047619047619,1.05,1.05
Corn,2011,"NEW YORK",36,"All Pesticides",8,TA,H,2.744,2.61333333333333,1.05,1.05
Corn,2011,"NEW YORK",36,Herbicides,8,TH,H,2.721,2.59142857142857,1.05,1.05
Corn,2011,"NEW YORK",36,Insecticides,8,TI,I,0.023,0.0219047619047619,1.05,1.05
Corn,2009,"NEW YORK",36,"All Pesticides",8,TA,H,2.471,2.4959595959596,0.99,0.99
Corn,2009,"NEW YORK",36,Herbicides,8,TH,H,2.325,2.34848484848485,0.99,0.99
Corn,2009,"NEW YORK",36,Insecticides,8,TI,I,0.146,0.147474747474747,0.99,0.99
Corn,2008,"NEW YORK",36,"All Pesticides",8,TA,H,2.471,2.4959595959596,0.99,0.99
Corn,2008,"NEW YORK",36,Herbicides,8,TH,H,2.325,2.34848484848485,0.99,0.99
Corn,2008,"NEW YORK",36,Insecticides,8,TI,I,0.146,0.147474747474747,0.99,0.99
Corn,2007,"NEW YORK",36,"All Pesticides",8,TA,H,2.471,2.4959595959596,0.99,0.99
Corn,2007,"NEW YORK",36,Herbicides,8,TH,H,2.325,2.34848484848485,0.99,0.99
Corn,2007,"NEW YORK",36,Insecticides,8,TI,I,0.146,0.147474747474747,0.99,0.99
Corn,2006,"NEW YORK",36,"All Pesticides",8,TA,H,2.471,2.4959595959596,0.99,0.99
Corn,2006,"NEW YORK",36,Herbicides,8,TH,H,2.325,2.34848484848485,0.99,0.99
Corn,2006,"NEW YORK",36,Insecticides,8,TI,I,0.146,0.147474747474747,0.99,0.99
Corn,2005,"NEW YORK",36,"All Pesticides",8,TA,H,2.471,2.4959595959596,0.99,0.99
Corn,2005,"NEW YORK",36,Herbicides,8,TH,H,2.325,2.34848484848485,0.99,0.99
Corn,2005,"NEW YORK",36,Insecticides,8,TI,I,0.146,0.147474747474747,0.99,0.99
Corn,2004,"NEW YORK",36,"All Pesticides",8,TA,I,2.248,2.248,1.0,1.0
Corn,2004,"NEW YORK",36,Herbicides,8,TH,H,2.107,2.107,1.0,1.0
Corn,2004,"NEW YORK",36,Insecticides,8,TI,I,0.141,0.141,1.0,1.0
Corn,2003,"NEW YORK",36,"All Pesticides",8,TA,I,2.248,2.248,1.0,1.0
Corn,2003,"NEW YORK",36,Herbicides,8,TH,H,2.107,2.107,1.0,1.0
Corn,2003,"NEW YORK",36,Insecticides,8,TI,I,0.141,0.141,1.0,1.0
Corn,2002,"NEW YORK",36,"All Pesticides",8,TA,I,2.679,2.60097087378641,1.03,1.03
Corn,2002,"NEW YORK",36,Herbicides,8,TH,H,2.61,2.53398058252427,1.03,1.03
Corn,2002,"NEW YORK",36,Insecticides,8,TI,I,0.069,0.0669902912621359,1.03,1.03
Corn,2001,"NEW YORK",36,"All Pesticides",8,TA,I,2.679,2.60097087378641,1.03,1.03
Corn,2001,"NEW YORK",36,Herbicides,8,TH,H,2.61,2.53398058252427,1.03,1.03
Corn,2001,"NEW YORK",36,Insecticides,8,TI,I,0.069,0.0669902912621359,1.03,1.03
Corn,2000,"NEW YORK",36,"All Pesticides",8,TA,I,2.516,2.56734693877551,0.98,0.98
Corn,2000,"NEW YORK",36,Herbicides,8,TH,H,2.312,2.35918367346939,0.98,0.98
Corn,2000,"NEW YORK",36,Insecticides,8,TI,I,0.204,0.208163265306122,0.98,0.98
Corn,2014,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.379,2.61428571428571,0.91,0.91
Corn,2014,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.349,2.58131868131868,0.91,0.91
Corn,2014,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.03,0.032967032967033,0.91,0.91
Corn,2013,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.379,2.61428571428571,0.91,0.91
Corn,2013,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.349,2.58131868131868,0.91,0.91
Corn,2013,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.03,0.032967032967033,0.91,0.91
Corn,2012,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.379,2.61428571428571,0.91,0.91
Corn,2012,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.349,2.58131868131868,0.91,0.91
Corn,2012,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.03,0.032967032967033,0.91,0.91
Corn,2011,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.379,2.61428571428571,0.91,0.91
Corn,2011,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.349,2.58131868131868,0.91,0.91
Corn,2011,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.03,0.032967032967033,0.91,0.91
Corn,2009,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,1.799,2.39866666666667,0.75,0.75
Corn,2009,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.669,2.22533333333333,0.75,0.75
Corn,2009,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.13,0.173333333333333,0.75,0.75
Corn,2008,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,1.799,2.39866666666667,0.75,0.75
Corn,2008,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.669,2.22533333333333,0.75,0.75
Corn,2008,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.13,0.173333333333333,0.75,0.75
Corn,2007,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,1.799,2.39866666666667,0.75,0.75
Corn,2007,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.669,2.22533333333333,0.75,0.75
Corn,2007,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.13,0.173333333333333,0.75,0.75
Corn,2006,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,1.799,2.39866666666667,0.75,0.75
Corn,2006,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.669,2.22533333333333,0.75,0.75
Corn,2006,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.13,0.173333333333333,0.75,0.75
Corn,2005,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,1.799,2.39866666666667,0.75,0.75
Corn,2005,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.669,2.22533333333333,0.75,0.75
Corn,2005,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.13,0.173333333333333,0.75,0.75
Corn,2004,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.067,2.79324324324324,0.74,0.74
Corn,2004,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.854,2.50540540540541,0.74,0.74
Corn,2004,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.213,0.287837837837838,0.74,0.74
Corn,2003,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.067,2.79324324324324,0.74,0.74
Corn,2003,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.854,2.50540540540541,0.74,0.74
Corn,2003,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.213,0.287837837837838,0.74,0.74
Corn,2002,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,1.739,2.48428571428571,0.7,0.7
Corn,2002,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.558,2.22571428571429,0.7,0.7
Corn,2002,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.181,0.258571428571429,0.7,0.7
Corn,2001,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,1.739,2.48428571428571,0.7,0.7
Corn,2001,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.558,2.22571428571429,0.7,0.7
Corn,2001,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.181,0.258571428571429,0.7,0.7
Corn,2000,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.095,2.86986301369863,0.73,0.73
Corn,2000,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.732,2.37260273972603,0.73,0.73
Corn,2000,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.363,0.497260273972603,0.73,0.73
Corn,1999,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,1.562,2.08266666666667,0.75,0.75
Corn,1999,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.34,1.78666666666667,0.75,0.75
Corn,1999,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.222,0.296,0.75,0.75
Corn,1998,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,2.433,2.82906976744186,0.86,0.86
Corn,1998,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.15,2.5,0.86,0.86
Corn,1998,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.283,0.32906976744186,0.86,0.86
Corn,1997,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,2.941,2.941,1.0,1.0
Corn,1997,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.565,2.565,1.0,1.0
Corn,1997,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.376,0.376,1.0,1.0
Corn,1996,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,2.941,2.941,1.0,1.0
Corn,1996,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.565,2.565,1.0,1.0
Corn,1996,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.376,0.376,1.0,1.0
Corn,1995,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,1.965,2.45625,0.8,0.8
Corn,1995,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.679,2.09875,0.8,0.8
Corn,1995,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.286,0.3575,0.8,0.8
Corn,1994,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,3.173,3.173,1.0,1.0
Corn,1994,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.56,2.56,1.0,1.0
Corn,1994,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.613,0.613,1.0,1.0
Corn,1993,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,3.173,3.173,1.0,1.0
Corn,1993,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.56,2.56,1.0,1.0
Corn,1993,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.613,0.613,1.0,1.0
Corn,1992,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,3.046,2.64869565217391,1.15,1.15
Corn,1992,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.903,2.52434782608696,1.15,1.15
Corn,1992,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.143,0.124347826086957,1.15,1.15
Corn,1991,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.458,2.34095238095238,1.05,1.05
Corn,1991,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.303,2.19333333333333,1.05,1.05
Corn,1991,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.155,0.147619047619048,1.05,1.05
Corn,2014,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,3.761,1.83463414634146,2.05,2.05
Corn,2014,"NORTH DAKOTA",38,Herbicides,8,TH,H,3.761,1.83463414634146,2.05,2.05
Corn,2013,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,3.761,1.83463414634146,2.05,2.05
Corn,2013,"NORTH DAKOTA",38,Herbicides,8,TH,H,3.761,1.83463414634146,2.05,2.05
Corn,2012,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,3.761,1.83463414634146,2.05,2.05
Corn,2012,"NORTH DAKOTA",38,Herbicides,8,TH,H,3.761,1.83463414634146,2.05,2.05
Corn,2011,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,3.761,1.83463414634146,2.05,2.05
Corn,2011,"NORTH DAKOTA",38,Herbicides,8,TH,H,3.761,1.83463414634146,2.05,2.05
Corn,2009,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,1.094,0.775886524822695,1.41,1.41
Corn,2009,"NORTH DAKOTA",38,Herbicides,8,TH,H,1.094,0.775886524822695,1.41,1.41
Corn,2008,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,1.094,0.775886524822695,1.41,1.41
Corn,2008,"NORTH DAKOTA",38,Herbicides,8,TH,H,1.094,0.775886524822695,1.41,1.41
Corn,2007,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,1.094,0.775886524822695,1.41,1.41
Corn,2007,"NORTH DAKOTA",38,Herbicides,8,TH,H,1.094,0.775886524822695,1.41,1.41
Corn,2006,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,1.094,0.775886524822695,1.41,1.41
Corn,2006,"NORTH DAKOTA",38,Herbicides,8,TH,H,1.094,0.775886524822695,1.41,1.41
Corn,2005,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,1.094,0.775886524822695,1.41,1.41
Corn,2005,"NORTH DAKOTA",38,Herbicides,8,TH,H,1.094,0.775886524822695,1.41,1.41
Corn,2004,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,1.564,1.07862068965517,1.45,1.45
Corn,2004,"NORTH DAKOTA",38,Herbicides,8,TH,H,1.564,1.07862068965517,1.45,1.45
Corn,2003,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,1.564,1.07862068965517,1.45,1.45
Corn,2003,"NORTH DAKOTA",38,Herbicides,8,TH,H,1.564,1.07862068965517,1.45,1.45
Corn,2002,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,0.745,0.846590909090909,0.88,0.88
Corn,2002,"NORTH DAKOTA",38,Herbicides,8,TH,H,0.745,0.846590909090909,0.88,0.88
Corn,2001,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,0.745,0.846590909090909,0.88,0.88
Corn,2001,"NORTH DAKOTA",38,Herbicides,8,TH,H,0.745,0.846590909090909,0.88,0.88
Corn,2000,"NORTH DAKOTA",38,"All Pesticides",8,TA,H,1.284,1.18888888888889,1.08,1.08
Corn,2000,"NORTH DAKOTA",38,Herbicides,8,TH,H,1.284,1.18888888888889,1.08,1.08
Corn,2014,OHIO,39,"All Pesticides",8,TA,I,9.242,2.67884057971014,3.45,3.45
Corn,2014,OHIO,39,Herbicides,8,TH,H,9.149,2.65188405797101,3.45,3.45
Corn,2014,OHIO,39,Insecticides,8,TI,I,0.093,0.0269565217391304,3.45,3.45
Corn,2013,OHIO,39,"All Pesticides",8,TA,I,9.242,2.67884057971014,3.45,3.45
Corn,2013,OHIO,39,Herbicides,8,TH,H,9.149,2.65188405797101,3.45,3.45
Corn,2013,OHIO,39,Insecticides,8,TI,I,0.093,0.0269565217391304,3.45,3.45
Corn,2012,OHIO,39,"All Pesticides",8,TA,I,9.242,2.67884057971014,3.45,3.45
Corn,2012,OHIO,39,Herbicides,8,TH,H,9.149,2.65188405797101,3.45,3.45
Corn,2012,OHIO,39,Insecticides,8,TI,I,0.093,0.0269565217391304,3.45,3.45
Corn,2011,OHIO,39,"All Pesticides",8,TA,I,9.242,2.67884057971014,3.45,3.45
Corn,2011,OHIO,39,Herbicides,8,TH,H,9.149,2.65188405797101,3.45,3.45
Corn,2011,OHIO,39,Insecticides,8,TI,I,0.093,0.0269565217391304,3.45,3.45
Corn,2009,OHIO,39,"All Pesticides",8,TA,H,9.537,2.76434782608696,3.45,3.45
Corn,2009,OHIO,39,Herbicides,8,TH,H,9.322,2.70202898550725,3.45,3.45
Corn,2009,OHIO,39,Insecticides,8,TI,I,0.215,0.0623188405797101,3.45,3.45
Corn,2008,OHIO,39,"All Pesticides",8,TA,H,9.537,2.76434782608696,3.45,3.45
Corn,2008,OHIO,39,Herbicides,8,TH,H,9.322,2.70202898550725,3.45,3.45
Corn,2008,OHIO,39,Insecticides,8,TI,I,0.215,0.0623188405797101,3.45,3.45
Corn,2007,OHIO,39,"All Pesticides",8,TA,H,9.537,2.76434782608696,3.45,3.45
Corn,2007,OHIO,39,Herbicides,8,TH,H,9.322,2.70202898550725,3.45,3.45
Corn,2007,OHIO,39,Insecticides,8,TI,I,0.215,0.0623188405797101,3.45,3.45
Corn,2006,OHIO,39,"All Pesticides",8,TA,H,9.537,2.76434782608696,3.45,3.45
Corn,2006,OHIO,39,Herbicides,8,TH,H,9.322,2.70202898550725,3.45,3.45
Corn,2006,OHIO,39,Insecticides,8,TI,I,0.215,0.0623188405797101,3.45,3.45
Corn,2005,OHIO,39,"All Pesticides",8,TA,H,9.537,2.76434782608696,3.45,3.45
Corn,2005,OHIO,39,Herbicides,8,TH,H,9.322,2.70202898550725,3.45,3.45
Corn,2005,OHIO,39,Insecticides,8,TI,I,0.215,0.0623188405797101,3.45,3.45
Corn,2004,OHIO,39,"All Pesticides",8,TA,I,9.308,2.82060606060606,3.3,3.3
Corn,2004,OHIO,39,Herbicides,8,TH,H,9.198,2.78727272727273,3.3,3.3
Corn,2004,OHIO,39,Insecticides,8,TI,I,0.11,0.0333333333333333,3.3,3.3
Corn,2003,OHIO,39,"All Pesticides",8,TA,I,9.308,2.82060606060606,3.3,3.3
Corn,2003,OHIO,39,Herbicides,8,TH,H,9.198,2.78727272727273,3.3,3.3
Corn,2003,OHIO,39,Insecticides,8,TI,I,0.11,0.0333333333333333,3.3,3.3
Corn,2002,OHIO,39,"All Pesticides",8,TA,I,8.549,2.63046153846154,3.25,3.25
Corn,2002,OHIO,39,Herbicides,8,TH,H,8.424,2.592,3.25,3.25
Corn,2002,OHIO,39,Insecticides,8,TI,I,0.125,0.0384615384615385,3.25,3.25
Corn,2001,OHIO,39,"All Pesticides",8,TA,H,10.633,3.12735294117647,3.4,3.4
Corn,2001,OHIO,39,Herbicides,8,TH,H,9.986,2.93705882352941,3.4,3.4
Corn,2001,OHIO,39,Insecticides,8,TI,I,0.647,0.190294117647059,3.4,3.4
Corn,2000,OHIO,39,"All Pesticides",8,TA,H,10.942,3.08225352112676,3.55,3.55
Corn,2000,OHIO,39,Herbicides,8,TH,H,10.339,2.91239436619718,3.55,3.55
Corn,2000,OHIO,39,Insecticides,8,TI,I,0.603,0.169859154929577,3.55,3.55
Corn,1999,OHIO,39,"All Pesticides",8,TA,H,10.234,2.9663768115942,3.45,3.45
Corn,1999,OHIO,39,Herbicides,8,TH,H,10.136,2.93797101449275,3.45,3.45
Corn,1999,OHIO,39,Insecticides,8,TI,I,0.098,0.0284057971014493,3.45,3.45
Corn,1998,OHIO,39,"All Pesticides",8,TA,H,10.816,3.04676056338028,3.55,3.55
Corn,1998,OHIO,39,Herbicides,8,TH,H,9.722,2.73859154929577,3.55,3.55
Corn,1998,OHIO,39,Insecticides,8,TI,I,1.094,0.308169014084507,3.55,3.55
Corn,1997,OHIO,39,"All Pesticides",8,TA,I,13.682,3.60052631578947,3.8,3.8
Corn,1997,OHIO,39,Herbicides,8,TH,H,12.971,3.41342105263158,3.8,3.8
Corn,1997,OHIO,39,Insecticides,8,TI,I,0.711,0.187105263157895,3.8,3.8
Corn,1996,OHIO,39,"All Pesticides",8,TA,I,10.62,3.54,3.0,3.0
Corn,1996,OHIO,39,Herbicides,8,TH,H,10.029,3.343,3.0,3.0
Corn,1996,OHIO,39,Insecticides,8,TI,I,0.591,0.197,3.0,3.0
Corn,1995,OHIO,39,"All Pesticides",8,TA,I,10.652,3.22787878787879,3.3,3.3
Corn,1995,OHIO,39,Herbicides,8,TH,H,10.233,3.10090909090909,3.3,3.3
Corn,1995,OHIO,39,Insecticides,8,TI,I,0.419,0.126969696969697,3.3,3.3
Corn,1994,OHIO,39,"All Pesticides",8,TA,I,11.919,3.22135135135135,3.7,3.7
Corn,1994,OHIO,39,Herbicides,8,TH,H,11.382,3.07621621621622,3.7,3.7
Corn,1994,OHIO,39,Insecticides,8,TI,I,0.537,0.145135135135135,3.7,3.7
Corn,1993,OHIO,39,"All Pesticides",8,TA,H,12.008,3.43085714285714,3.5,3.5
Corn,1993,OHIO,39,Herbicides,8,TH,H,11.409,3.25971428571429,3.5,3.5
Corn,1993,OHIO,39,Insecticides,8,TI,I,0.599,0.171142857142857,3.5,3.5
Corn,1992,OHIO,39,"All Pesticides",8,TA,H,12.737,3.35184210526316,3.8,3.8
Corn,1992,OHIO,39,Herbicides,8,TH,H,12.141,3.195,3.8,3.8
Corn,1992,OHIO,39,Insecticides,8,TI,I,0.596,0.156842105263158,3.8,3.8
Corn,1991,OHIO,39,"All Pesticides",8,TA,H,12.421,3.35702702702703,3.7,3.7
Corn,1991,OHIO,39,Herbicides,8,TH,H,12.007,3.24513513513513,3.7,3.7
Corn,1991,OHIO,39,Insecticides,8,TI,I,0.414,0.111891891891892,3.7,3.7
Corn,2014,PENNSYLVANIA,42,"All Pesticides",8,TA,H,4.699,3.48074074074074,1.35,1.35
Corn,2014,PENNSYLVANIA,42,Herbicides,8,TH,H,4.668,3.45777777777778,1.35,1.35
Corn,2014,PENNSYLVANIA,42,Insecticides,8,TI,I,0.031,0.022962962962963,1.35,1.35
Corn,2013,PENNSYLVANIA,42,"All Pesticides",8,TA,H,4.699,3.48074074074074,1.35,1.35
Corn,2013,PENNSYLVANIA,42,Herbicides,8,TH,H,4.668,3.45777777777778,1.35,1.35
Corn,2013,PENNSYLVANIA,42,Insecticides,8,TI,I,0.031,0.022962962962963,1.35,1.35
Corn,2012,PENNSYLVANIA,42,"All Pesticides",8,TA,H,4.699,3.48074074074074,1.35,1.35
Corn,2012,PENNSYLVANIA,42,Herbicides,8,TH,H,4.668,3.45777777777778,1.35,1.35
Corn,2012,PENNSYLVANIA,42,Insecticides,8,TI,I,0.031,0.022962962962963,1.35,1.35
Corn,2011,PENNSYLVANIA,42,"All Pesticides",8,TA,H,4.699,3.48074074074074,1.35,1.35
Corn,2011,PENNSYLVANIA,42,Herbicides,8,TH,H,4.668,3.45777777777778,1.35,1.35
Corn,2011,PENNSYLVANIA,42,Insecticides,8,TI,I,0.031,0.022962962962963,1.35,1.35
Corn,2009,PENNSYLVANIA,42,"All Pesticides",8,TA,H,3.5,2.59259259259259,1.35,1.35
Corn,2009,PENNSYLVANIA,42,Herbicides,8,TH,H,3.346,2.47851851851852,1.35,1.35
Corn,2009,PENNSYLVANIA,42,Insecticides,8,TI,I,0.154,0.114074074074074,1.35,1.35
Corn,2008,PENNSYLVANIA,42,"All Pesticides",8,TA,H,3.5,2.59259259259259,1.35,1.35
Corn,2008,PENNSYLVANIA,42,Herbicides,8,TH,H,3.346,2.47851851851852,1.35,1.35
Corn,2008,PENNSYLVANIA,42,Insecticides,8,TI,I,0.154,0.114074074074074,1.35,1.35
Corn,2007,PENNSYLVANIA,42,"All Pesticides",8,TA,H,3.5,2.59259259259259,1.35,1.35
Corn,2007,PENNSYLVANIA,42,Herbicides,8,TH,H,3.346,2.47851851851852,1.35,1.35
Corn,2007,PENNSYLVANIA,42,Insecticides,8,TI,I,0.154,0.114074074074074,1.35,1.35
Corn,2006,PENNSYLVANIA,42,"All Pesticides",8,TA,H,3.5,2.59259259259259,1.35,1.35
Corn,2006,PENNSYLVANIA,42,Herbicides,8,TH,H,3.346,2.47851851851852,1.35,1.35
Corn,2006,PENNSYLVANIA,42,Insecticides,8,TI,I,0.154,0.114074074074074,1.35,1.35
Corn,2005,PENNSYLVANIA,42,"All Pesticides",8,TA,H,3.5,2.59259259259259,1.35,1.35
Corn,2005,PENNSYLVANIA,42,Herbicides,8,TH,H,3.346,2.47851851851852,1.35,1.35
Corn,2005,PENNSYLVANIA,42,Insecticides,8,TI,I,0.154,0.114074074074074,1.35,1.35
Corn,2004,PENNSYLVANIA,42,"All Pesticides",8,TA,H,3.799,2.62,1.45,1.45
Corn,2004,PENNSYLVANIA,42,Herbicides,8,TH,H,3.62,2.49655172413793,1.45,1.45
Corn,2004,PENNSYLVANIA,42,Insecticides,8,TI,I,0.179,0.123448275862069,1.45,1.45
Corn,2003,PENNSYLVANIA,42,"All Pesticides",8,TA,H,3.799,2.62,1.45,1.45
Corn,2003,PENNSYLVANIA,42,Herbicides,8,TH,H,3.62,2.49655172413793,1.45,1.45
Corn,2003,PENNSYLVANIA,42,Insecticides,8,TI,I,0.179,0.123448275862069,1.45,1.45
Corn,2002,PENNSYLVANIA,42,"All Pesticides",8,TA,I,5.034,3.47172413793103,1.45,1.45
Corn,2002,PENNSYLVANIA,42,Herbicides,8,TH,H,4.484,3.09241379310345,1.45,1.45
Corn,2002,PENNSYLVANIA,42,Insecticides,8,TI,I,0.55,0.379310344827586,1.45,1.45
Corn,2001,PENNSYLVANIA,42,"All Pesticides",8,TA,I,5.034,3.47172413793103,1.45,1.45
Corn,2001,PENNSYLVANIA,42,Herbicides,8,TH,H,4.484,3.09241379310345,1.45,1.45
Corn,2001,PENNSYLVANIA,42,Insecticides,8,TI,I,0.55,0.379310344827586,1.45,1.45
Corn,2000,PENNSYLVANIA,42,"All Pesticides",8,TA,H,4.721,3.0458064516129,1.55,1.55
Corn,2000,PENNSYLVANIA,42,Herbicides,8,TH,H,4.419,2.85096774193548,1.55,1.55
Corn,2000,PENNSYLVANIA,42,Insecticides,8,TI,I,0.302,0.194838709677419,1.55,1.55
Corn,1999,PENNSYLVANIA,42,"All Pesticides",8,TA,H,4.698,3.03096774193548,1.55,1.55
Corn,1999,PENNSYLVANIA,42,Herbicides,8,TH,H,4.436,2.86193548387097,1.55,1.55
Corn,1999,PENNSYLVANIA,42,Insecticides,8,TI,I,0.262,0.169032258064516,1.55,1.55
Corn,1998,PENNSYLVANIA,42,"All Pesticides",8,TA,H,4.698,3.03096774193548,1.55,1.55
Corn,1998,PENNSYLVANIA,42,Herbicides,8,TH,H,4.436,2.86193548387097,1.55,1.55
Corn,1998,PENNSYLVANIA,42,Insecticides,8,TI,I,0.262,0.169032258064516,1.55,1.55
Corn,1997,PENNSYLVANIA,42,"All Pesticides",8,TA,I,4.79,3.30344827586207,1.45,1.45
Corn,1997,PENNSYLVANIA,42,Herbicides,8,TH,H,4.371,3.01448275862069,1.45,1.45
Corn,1997,PENNSYLVANIA,42,Insecticides,8,TI,I,0.419,0.288965517241379,1.45,1.45
Corn,1996,PENNSYLVANIA,42,"All Pesticides",8,TA,I,4.79,3.30344827586207,1.45,1.45
Corn,1996,PENNSYLVANIA,42,Herbicides,8,TH,H,4.371,3.01448275862069,1.45,1.45
Corn,1996,PENNSYLVANIA,42,Insecticides,8,TI,I,0.419,0.288965517241379,1.45,1.45
Corn,1995,PENNSYLVANIA,42,"All Pesticides",8,TA,H,4.464,3.23478260869565,1.38,1.38
Corn,1995,PENNSYLVANIA,42,Herbicides,8,TH,H,4.169,3.02101449275362,1.38,1.38
Corn,1995,PENNSYLVANIA,42,Insecticides,8,TI,I,0.295,0.213768115942029,1.38,1.38
Corn,1994,PENNSYLVANIA,42,"All Pesticides",8,TA,I,4.152,3.03065693430657,1.37,1.37
Corn,1994,PENNSYLVANIA,42,Herbicides,8,TH,H,3.913,2.85620437956204,1.37,1.37
Corn,1994,PENNSYLVANIA,42,Insecticides,8,TI,I,0.239,0.174452554744526,1.37,1.37
Corn,1993,PENNSYLVANIA,42,"All Pesticides",8,TA,I,4.152,3.03065693430657,1.37,1.37
Corn,1993,PENNSYLVANIA,42,Herbicides,8,TH,H,3.913,2.85620437956204,1.37,1.37
Corn,1993,PENNSYLVANIA,42,Insecticides,8,TI,I,0.239,0.174452554744526,1.37,1.37
Corn,1992,PENNSYLVANIA,42,"All Pesticides",8,TA,I,3.961,2.87028985507246,1.38,1.38
Corn,1992,PENNSYLVANIA,42,Herbicides,8,TH,H,3.725,2.69927536231884,1.38,1.38
Corn,1992,PENNSYLVANIA,42,Insecticides,8,TI,I,0.236,0.171014492753623,1.38,1.38
Corn,1991,PENNSYLVANIA,42,"All Pesticides",8,TA,I,3.828,2.73428571428571,1.4,1.4
Corn,1991,PENNSYLVANIA,42,Herbicides,8,TH,H,3.44,2.45714285714286,1.4,1.4
Corn,1991,PENNSYLVANIA,42,Insecticides,8,TI,I,0.388,0.277142857142857,1.4,1.4
Corn,2014,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2014,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2014,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2013,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2013,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2013,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2012,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2012,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2012,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2011,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2011,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2011,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2010,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2010,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2010,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2009,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2009,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2009,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2008,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2008,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2008,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2007,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2007,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2007,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2006,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2006,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2006,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2005,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2005,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2005,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2004,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2004,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2004,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2003,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2003,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2003,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2002,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2002,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2002,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2001,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2001,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2001,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,2000,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,2000,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,2000,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,1999,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,1999,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,1999,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,1998,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,1998,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,1998,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,1997,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,1.101,2.7525,0.4,0.4
Corn,1997,"SOUTH CAROLINA",45,Herbicides,8,TH,H,1.017,2.5425,0.4,0.4
Corn,1997,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.084,0.21,0.4,0.4
Corn,1995,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.893,2.38133333333333,0.375,0.375
Corn,1995,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.778,2.07466666666667,0.375,0.375
Corn,1995,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.115,0.306666666666667,0.375,0.375
Corn,1994,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.893,2.38133333333333,0.375,0.375
Corn,1994,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.778,2.07466666666667,0.375,0.375
Corn,1994,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.115,0.306666666666667,0.375,0.375
Corn,1993,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.893,2.38133333333333,0.375,0.375
Corn,1993,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.778,2.07466666666667,0.375,0.375
Corn,1993,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.115,0.306666666666667,0.375,0.375
Corn,1992,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.893,2.38133333333333,0.375,0.375
Corn,1992,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.778,2.07466666666667,0.375,0.375
Corn,1992,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.115,0.306666666666667,0.375,0.375
Corn,1991,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.542,1.93571428571429,0.28,0.28
Corn,1991,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.511,1.825,0.28,0.28
Corn,1991,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.031,0.110714285714286,0.28,0.28
Corn,2014,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,8.484,1.86461538461538,4.55,4.55
Corn,2014,"SOUTH DAKOTA",46,Herbicides,8,TH,H,8.48,1.86373626373626,4.55,4.55
Corn,2014,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.004,0.000879120879120879,4.55,4.55
Corn,2013,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,8.484,1.86461538461538,4.55,4.55
Corn,2013,"SOUTH DAKOTA",46,Herbicides,8,TH,H,8.48,1.86373626373626,4.55,4.55
Corn,2013,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.004,0.000879120879120879,4.55,4.55
Corn,2012,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,8.484,1.86461538461538,4.55,4.55
Corn,2012,"SOUTH DAKOTA",46,Herbicides,8,TH,H,8.48,1.86373626373626,4.55,4.55
Corn,2012,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.004,0.000879120879120879,4.55,4.55
Corn,2011,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,8.484,1.86461538461538,4.55,4.55
Corn,2011,"SOUTH DAKOTA",46,Herbicides,8,TH,H,8.48,1.86373626373626,4.55,4.55
Corn,2011,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.004,0.000879120879120879,4.55,4.55
Corn,2009,"SOUTH DAKOTA",46,"All Pesticides",8,TA,H,6.275,1.41011235955056,4.45,4.45
Corn,2009,"SOUTH DAKOTA",46,Herbicides,8,TH,H,6.036,1.35640449438202,4.45,4.45
Corn,2009,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.239,0.0537078651685393,4.45,4.45
Corn,2008,"SOUTH DAKOTA",46,"All Pesticides",8,TA,H,6.275,1.41011235955056,4.45,4.45
Corn,2008,"SOUTH DAKOTA",46,Herbicides,8,TH,H,6.036,1.35640449438202,4.45,4.45
Corn,2008,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.239,0.0537078651685393,4.45,4.45
Corn,2007,"SOUTH DAKOTA",46,"All Pesticides",8,TA,H,6.275,1.41011235955056,4.45,4.45
Corn,2007,"SOUTH DAKOTA",46,Herbicides,8,TH,H,6.036,1.35640449438202,4.45,4.45
Corn,2007,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.239,0.0537078651685393,4.45,4.45
Corn,2006,"SOUTH DAKOTA",46,"All Pesticides",8,TA,H,6.275,1.41011235955056,4.45,4.45
Corn,2006,"SOUTH DAKOTA",46,Herbicides,8,TH,H,6.036,1.35640449438202,4.45,4.45
Corn,2006,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.239,0.0537078651685393,4.45,4.45
Corn,2005,"SOUTH DAKOTA",46,"All Pesticides",8,TA,H,6.275,1.41011235955056,4.45,4.45
Corn,2005,"SOUTH DAKOTA",46,Herbicides,8,TH,H,6.036,1.35640449438202,4.45,4.45
Corn,2005,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.239,0.0537078651685393,4.45,4.45
Corn,2004,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,6.09,1.60263157894737,3.8,3.8
Corn,2004,"SOUTH DAKOTA",46,Herbicides,8,TH,H,6.003,1.36431818181818,4.4,4.4
Corn,2004,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.087,0.0228947368421053,3.8,3.8
Corn,2003,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,6.09,1.60263157894737,3.8,3.8
Corn,2003,"SOUTH DAKOTA",46,Herbicides,8,TH,H,6.003,1.36431818181818,4.4,4.4
Corn,2003,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.087,0.0228947368421053,3.8,3.8
Corn,2002,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,5.709,1.50236842105263,3.8,3.8
Corn,2002,"SOUTH DAKOTA",46,Herbicides,8,TH,H,5.622,1.47947368421053,3.8,3.8
Corn,2002,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.087,0.0228947368421053,3.8,3.8
Corn,2001,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,5.709,1.50236842105263,3.8,3.8
Corn,2001,"SOUTH DAKOTA",46,Herbicides,8,TH,H,5.622,1.47947368421053,3.8,3.8
Corn,2001,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.087,0.0228947368421053,3.8,3.8
Corn,2000,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,5.834,1.35674418604651,4.3,4.3
Corn,2000,"SOUTH DAKOTA",46,Herbicides,8,TH,H,5.79,1.34651162790698,4.3,4.3
Corn,2000,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.044,0.0102325581395349,4.3,4.3
Corn,1999,"SOUTH DAKOTA",46,"All Pesticides",8,TA,H,6.382,1.77277777777778,3.6,3.6
Corn,1999,"SOUTH DAKOTA",46,Herbicides,8,TH,H,5.862,1.62833333333333,3.6,3.6
Corn,1999,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.52,0.144444444444444,3.6,3.6
Corn,1998,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,10.264,2.70105263157895,3.8,3.8
Corn,1998,"SOUTH DAKOTA",46,Herbicides,8,TH,H,9.947,2.55051282051282,3.9,3.9
Corn,1998,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.317,0.083421052631579,3.8,3.8
Corn,1997,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,6.663,1.75342105263158,3.8,3.8
Corn,1997,"SOUTH DAKOTA",46,Herbicides,8,TH,H,6.346,1.67,3.8,3.8
Corn,1997,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.317,0.083421052631579,3.8,3.8
Corn,1996,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,7.513,1.87825,4.0,4.0
Corn,1996,"SOUTH DAKOTA",46,Herbicides,8,TH,H,7.091,1.77275,4.0,4.0
Corn,1996,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.422,0.1055,4.0,4.0
Corn,1995,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,4.844,1.73,2.8,2.8
Corn,1995,"SOUTH DAKOTA",46,Herbicides,8,TH,H,4.691,1.67535714285714,2.8,2.8
Corn,1995,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.153,0.0546428571428571,2.8,2.8
Corn,1994,"SOUTH DAKOTA",46,"All Pesticides",8,TA,I,7.424,1.95368421052632,3.8,3.8
Corn,1994,"SOUTH DAKOTA",46,Herbicides,8,TH,H,7.022,1.84789473684211,3.8,3.8
Corn,1994,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.402,0.105789473684211,3.8,3.8
Corn,1993,"SOUTH DAKOTA",46,"All Pesticides",8,TA,H,5.929,1.76985074626866,3.35,3.35
Corn,1993,"SOUTH DAKOTA",46,Herbicides,8,TH,H,5.703,1.70238805970149,3.35,3.35
Corn,1993,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.226,0.0674626865671642,3.35,3.35
Corn,1992,"SOUTH DAKOTA",46,"All Pesticides",8,TA,H,7.659,2.01552631578947,3.8,3.8
Corn,1992,"SOUTH DAKOTA",46,Herbicides,8,TH,H,7.497,1.97289473684211,3.8,3.8
Corn,1992,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.162,0.0426315789473684,3.8,3.8
Corn,1991,"SOUTH DAKOTA",46,"All Pesticides",8,TA,H,7.446,1.9856,3.75,3.75
Corn,1991,"SOUTH DAKOTA",46,Herbicides,8,TH,H,7.313,1.95013333333333,3.75,3.75
Corn,1991,"SOUTH DAKOTA",46,Insecticides,8,TI,I,0.133,0.0354666666666667,3.75,3.75
Corn,2014,TEXAS,48,"All Pesticides",8,TA,H,3.888,1.6904347826087,2.3,2.3
Corn,2014,TEXAS,48,Herbicides,8,TH,H,3.755,1.63260869565217,2.3,2.3
Corn,2014,TEXAS,48,Insecticides,8,TI,I,0.133,0.0578260869565217,2.3,2.3
Corn,2013,TEXAS,48,"All Pesticides",8,TA,H,3.888,1.6904347826087,2.3,2.3
Corn,2013,TEXAS,48,Herbicides,8,TH,H,3.755,1.63260869565217,2.3,2.3
Corn,2013,TEXAS,48,Insecticides,8,TI,I,0.133,0.0578260869565217,2.3,2.3
Corn,2012,TEXAS,48,"All Pesticides",8,TA,H,3.888,1.6904347826087,2.3,2.3
Corn,2012,TEXAS,48,Herbicides,8,TH,H,3.755,1.63260869565217,2.3,2.3
Corn,2012,TEXAS,48,Insecticides,8,TI,I,0.133,0.0578260869565217,2.3,2.3
Corn,2011,TEXAS,48,"All Pesticides",8,TA,H,3.888,1.6904347826087,2.3,2.3
Corn,2011,TEXAS,48,Herbicides,8,TH,H,3.755,1.63260869565217,2.3,2.3
Corn,2011,TEXAS,48,Insecticides,8,TI,I,0.133,0.0578260869565217,2.3,2.3
Corn,2009,TEXAS,48,"All Pesticides",8,TA,H,3.58,1.74634146341463,2.05,2.05
Corn,2009,TEXAS,48,Herbicides,8,TH,H,3.344,1.63121951219512,2.05,2.05
Corn,2009,TEXAS,48,Insecticides,8,TI,I,0.236,0.115121951219512,2.05,2.05
Corn,2008,TEXAS,48,"All Pesticides",8,TA,H,3.58,1.74634146341463,2.05,2.05
Corn,2008,TEXAS,48,Herbicides,8,TH,H,3.344,1.63121951219512,2.05,2.05
Corn,2008,TEXAS,48,Insecticides,8,TI,I,0.236,0.115121951219512,2.05,2.05
Corn,2007,TEXAS,48,"All Pesticides",8,TA,H,3.58,1.74634146341463,2.05,2.05
Corn,2007,TEXAS,48,Herbicides,8,TH,H,3.344,1.63121951219512,2.05,2.05
Corn,2007,TEXAS,48,Insecticides,8,TI,I,0.236,0.115121951219512,2.05,2.05
Corn,2006,TEXAS,48,"All Pesticides",8,TA,H,3.58,1.74634146341463,2.05,2.05
Corn,2006,TEXAS,48,Herbicides,8,TH,H,3.344,1.63121951219512,2.05,2.05
Corn,2006,TEXAS,48,Insecticides,8,TI,I,0.236,0.115121951219512,2.05,2.05
Corn,2005,TEXAS,48,"All Pesticides",8,TA,H,3.58,1.74634146341463,2.05,2.05
Corn,2005,TEXAS,48,Herbicides,8,TH,H,3.344,1.63121951219512,2.05,2.05
Corn,2005,TEXAS,48,Insecticides,8,TI,I,0.236,0.115121951219512,2.05,2.05
Corn,2004,TEXAS,48,"All Pesticides",8,TA,I,2.867,1.56666666666667,1.83,1.83
Corn,2004,TEXAS,48,Herbicides,8,TH,H,2.273,1.24207650273224,1.83,1.83
Corn,2004,TEXAS,48,Insecticides,8,TI,I,0.594,0.324590163934426,1.83,1.83
Corn,2003,TEXAS,48,"All Pesticides",8,TA,I,2.867,1.56666666666667,1.83,1.83
Corn,2003,TEXAS,48,Herbicides,8,TH,H,2.273,1.24207650273224,1.83,1.83
Corn,2003,TEXAS,48,Insecticides,8,TI,I,0.594,0.324590163934426,1.83,1.83
Corn,2002,TEXAS,48,"All Pesticides",8,TA,I,2.654,1.65875,1.6,1.6
Corn,2002,TEXAS,48,Herbicides,8,TH,H,1.99,1.24375,1.6,1.6
Corn,2002,TEXAS,48,Insecticides,8,TI,I,0.664,0.415,1.6,1.6
Corn,2001,TEXAS,48,"All Pesticides",8,TA,I,2.654,1.65875,1.6,1.6
Corn,2001,TEXAS,48,Herbicides,8,TH,H,1.99,1.24375,1.6,1.6
Corn,2001,TEXAS,48,Insecticides,8,TI,I,0.664,0.415,1.6,1.6
Corn,2000,TEXAS,48,"All Pesticides",8,TA,I,2.465,1.17380952380952,2.1,2.1
Corn,2000,TEXAS,48,Herbicides,8,TH,H,2.039,0.970952380952381,2.1,2.1
Corn,2000,TEXAS,48,Insecticides,8,TI,I,0.426,0.202857142857143,2.1,2.1
Corn,1999,TEXAS,48,"All Pesticides",8,TA,H,3.648,1.87076923076923,1.95,1.95
Corn,1999,TEXAS,48,Herbicides,8,TH,H,3.19,1.63589743589744,1.95,1.95
Corn,1999,TEXAS,48,Insecticides,8,TI,I,0.458,0.234871794871795,1.95,1.95
Corn,1998,TEXAS,48,"All Pesticides",8,TA,I,3.711,1.54625,2.4,2.4
Corn,1998,TEXAS,48,Herbicides,8,TH,H,2.52,1.05,2.4,2.4
Corn,1998,TEXAS,48,Insecticides,8,TI,I,1.191,0.49625,2.4,2.4
Corn,1997,TEXAS,48,"All Pesticides",8,TA,H,3.482,1.65809523809524,2.1,2.1
Corn,1997,TEXAS,48,Herbicides,8,TH,H,2.77,1.31904761904762,2.1,2.1
Corn,1997,TEXAS,48,Insecticides,8,TI,I,0.712,0.339047619047619,2.1,2.1
Corn,1996,TEXAS,48,"All Pesticides",8,TA,H,3.482,1.65809523809524,2.1,2.1
Corn,1996,TEXAS,48,Herbicides,8,TH,H,2.77,1.31904761904762,2.1,2.1
Corn,1996,TEXAS,48,Insecticides,8,TI,I,0.712,0.339047619047619,2.1,2.1
Corn,1995,TEXAS,48,"All Pesticides",8,TA,I,3.683,1.75380952380952,2.1,2.1
Corn,1995,TEXAS,48,Herbicides,8,TH,H,2.84,1.35238095238095,2.1,2.1
Corn,1995,TEXAS,48,Insecticides,8,TI,I,0.843,0.401428571428571,2.1,2.1
Corn,1994,TEXAS,48,"All Pesticides",8,TA,I,2.424,1.212,2.0,2.0
Corn,1994,TEXAS,48,Herbicides,8,TH,H,2.007,1.0035,2.0,2.0
Corn,1994,TEXAS,48,Insecticides,8,TI,I,0.417,0.2085,2.0,2.0
Corn,1993,TEXAS,48,"All Pesticides",8,TA,I,2.424,1.212,2.0,2.0
Corn,1993,TEXAS,48,Herbicides,8,TH,H,2.007,1.0035,2.0,2.0
Corn,1993,TEXAS,48,Insecticides,8,TI,I,0.417,0.2085,2.0,2.0
Corn,1992,TEXAS,48,"All Pesticides",8,TA,I,2.642,1.50971428571429,1.75,1.75
Corn,1992,TEXAS,48,Herbicides,8,TH,H,2.153,1.23028571428571,1.75,1.75
Corn,1992,TEXAS,48,Insecticides,8,TI,I,0.489,0.279428571428571,1.75,1.75
Corn,1991,TEXAS,48,"All Pesticides",8,TA,I,2.398,1.41058823529412,1.7,1.7
Corn,1991,TEXAS,48,Herbicides,8,TH,H,1.75,1.02941176470588,1.7,1.7
Corn,1991,TEXAS,48,Insecticides,8,TI,I,0.648,0.381176470588235,1.7,1.7
Corn,2014,WISCONSIN,55,"All Pesticides",8,TA,I,8.74,2.24102564102564,3.9,3.9
Corn,2014,WISCONSIN,55,Herbicides,8,TH,H,8.676,2.22461538461538,3.9,3.9
Corn,2014,WISCONSIN,55,Insecticides,8,TI,I,0.064,0.0164102564102564,3.9,3.9
Corn,2013,WISCONSIN,55,"All Pesticides",8,TA,I,8.74,2.24102564102564,3.9,3.9
Corn,2013,WISCONSIN,55,Herbicides,8,TH,H,8.676,2.22461538461538,3.9,3.9
Corn,2013,WISCONSIN,55,Insecticides,8,TI,I,0.064,0.0164102564102564,3.9,3.9
Corn,2012,WISCONSIN,55,"All Pesticides",8,TA,I,8.74,2.24102564102564,3.9,3.9
Corn,2012,WISCONSIN,55,Herbicides,8,TH,H,8.676,2.22461538461538,3.9,3.9
Corn,2012,WISCONSIN,55,Insecticides,8,TI,I,0.064,0.0164102564102564,3.9,3.9
Corn,2011,WISCONSIN,55,"All Pesticides",8,TA,I,8.74,2.24102564102564,3.9,3.9
Corn,2011,WISCONSIN,55,Herbicides,8,TH,H,8.676,2.22461538461538,3.9,3.9
Corn,2011,WISCONSIN,55,Insecticides,8,TI,I,0.064,0.0164102564102564,3.9,3.9
Corn,2009,WISCONSIN,55,"All Pesticides",8,TA,H,6.503,1.71131578947368,3.8,3.8
Corn,2009,WISCONSIN,55,Herbicides,8,TH,H,6.369,1.67605263157895,3.8,3.8
Corn,2009,WISCONSIN,55,Insecticides,8,TI,I,0.134,0.0352631578947368,3.8,3.8
Corn,2008,WISCONSIN,55,"All Pesticides",8,TA,H,6.503,1.71131578947368,3.8,3.8
Corn,2008,WISCONSIN,55,Herbicides,8,TH,H,6.369,1.67605263157895,3.8,3.8
Corn,2008,WISCONSIN,55,Insecticides,8,TI,I,0.134,0.0352631578947368,3.8,3.8
Corn,2007,WISCONSIN,55,"All Pesticides",8,TA,H,6.503,1.71131578947368,3.8,3.8
Corn,2007,WISCONSIN,55,Herbicides,8,TH,H,6.369,1.67605263157895,3.8,3.8
Corn,2007,WISCONSIN,55,Insecticides,8,TI,I,0.134,0.0352631578947368,3.8,3.8
Corn,2006,WISCONSIN,55,"All Pesticides",8,TA,H,6.503,1.71131578947368,3.8,3.8
Corn,2006,WISCONSIN,55,Herbicides,8,TH,H,6.369,1.67605263157895,3.8,3.8
Corn,2006,WISCONSIN,55,Insecticides,8,TI,I,0.134,0.0352631578947368,3.8,3.8
Corn,2005,WISCONSIN,55,"All Pesticides",8,TA,H,6.503,1.71131578947368,3.8,3.8
Corn,2005,WISCONSIN,55,Herbicides,8,TH,H,6.369,1.67605263157895,3.8,3.8
Corn,2005,WISCONSIN,55,Insecticides,8,TI,I,0.134,0.0352631578947368,3.8,3.8
Corn,2004,WISCONSIN,55,"All Pesticides",8,TA,H,6.806,1.81493333333333,3.75,3.75
Corn,2004,WISCONSIN,55,Herbicides,8,TH,H,6.533,1.74213333333333,3.75,3.75
Corn,2004,WISCONSIN,55,Insecticides,8,TI,I,0.273,0.0728,3.75,3.75
Corn,2003,WISCONSIN,55,"All Pesticides",8,TA,H,6.806,1.81493333333333,3.75,3.75
Corn,2003,WISCONSIN,55,Herbicides,8,TH,H,6.533,1.74213333333333,3.75,3.75
Corn,2003,WISCONSIN,55,Insecticides,8,TI,I,0.273,0.0728,3.75,3.75
Corn,2002,WISCONSIN,55,"All Pesticides",8,TA,I,5.66,1.55068493150685,3.65,3.65
Corn,2002,WISCONSIN,55,Herbicides,8,TH,H,5.304,1.45315068493151,3.65,3.65
Corn,2002,WISCONSIN,55,Insecticides,8,TI,I,0.356,0.0975342465753425,3.65,3.65
Corn,2001,WISCONSIN,55,"All Pesticides",8,TA,I,6.42,1.88823529411765,3.4,3.4
Corn,2001,WISCONSIN,55,Herbicides,8,TH,H,6.265,1.84264705882353,3.4,3.4
Corn,2001,WISCONSIN,55,Insecticides,8,TI,I,0.155,0.0455882352941176,3.4,3.4
Corn,2000,WISCONSIN,55,"All Pesticides",8,TA,H,6.775,1.93571428571429,3.5,3.5
Corn,2000,WISCONSIN,55,Herbicides,8,TH,H,6.41,1.83142857142857,3.5,3.5
Corn,2000,WISCONSIN,55,Insecticides,8,TI,I,0.365,0.104285714285714,3.5,3.5
Corn,1999,WISCONSIN,55,"All Pesticides",8,TA,H,5.894,1.63722222222222,3.6,3.6
Corn,1999,WISCONSIN,55,Herbicides,8,TH,H,5.421,1.50583333333333,3.6,3.6
Corn,1999,WISCONSIN,55,Insecticides,8,TI,I,0.473,0.131388888888889,3.6,3.6
Corn,1998,WISCONSIN,55,"All Pesticides",8,TA,I,8.532,2.30594594594595,3.7,3.7
Corn,1998,WISCONSIN,55,Herbicides,8,TH,H,7.939,2.14567567567568,3.7,3.7
Corn,1998,WISCONSIN,55,Insecticides,8,TI,I,0.593,0.16027027027027,3.7,3.7
Corn,1997,WISCONSIN,55,"All Pesticides",8,TA,H,9.122,2.36935064935065,3.85,3.85
Corn,1997,WISCONSIN,55,Herbicides,8,TH,H,8.689,2.25688311688312,3.85,3.85
Corn,1997,WISCONSIN,55,Insecticides,8,TI,I,0.433,0.112467532467532,3.85,3.85
Corn,1996,WISCONSIN,55,"All Pesticides",8,TA,H,8.746,2.2425641025641,3.9,3.9
Corn,1996,WISCONSIN,55,Herbicides,8,TH,H,7.57,1.94102564102564,3.9,3.9
Corn,1996,WISCONSIN,55,Insecticides,8,TI,I,1.176,0.301538461538462,3.9,3.9
Corn,1995,WISCONSIN,55,"All Pesticides",8,TA,H,9.317,2.55260273972603,3.65,3.65
Corn,1995,WISCONSIN,55,Herbicides,8,TH,H,8.487,2.32520547945205,3.65,3.65
Corn,1995,WISCONSIN,55,Insecticides,8,TI,I,0.83,0.227397260273973,3.65,3.65
Corn,1994,WISCONSIN,55,"All Pesticides",8,TA,H,9.362,2.49653333333333,3.75,3.75
Corn,1994,WISCONSIN,55,Herbicides,8,TH,H,8.456,2.25493333333333,3.75,3.75
Corn,1994,WISCONSIN,55,Insecticides,8,TI,I,0.906,0.2416,3.75,3.75
Corn,1993,WISCONSIN,55,"All Pesticides",8,TA,I,8.222,2.41823529411765,3.4,3.4
Corn,1993,WISCONSIN,55,Herbicides,8,TH,H,7.28,2.14117647058824,3.4,3.4
Corn,1993,WISCONSIN,55,Insecticides,8,TI,I,0.942,0.277058823529412,3.4,3.4
Corn,1992,WISCONSIN,55,"All Pesticides",8,TA,I,10.468,2.68410256410256,3.9,3.9
Corn,1992,WISCONSIN,55,Herbicides,8,TH,H,9.129,2.34076923076923,3.9,3.9
Corn,1992,WISCONSIN,55,Insecticides,8,TI,I,1.339,0.343333333333333,3.9,3.9
Corn,1991,WISCONSIN,55,"All Pesticides",8,TA,I,10.125,2.66447368421053,3.8,3.8
Corn,1991,WISCONSIN,55,Herbicides,8,TH,H,8.761,2.30552631578947,3.8,3.8
Corn,1991,WISCONSIN,55,Insecticides,8,TI,I,1.364,0.358947368421053,3.8,3.8
"Cotton, upland",2014,ALABAMA,01,"All Pesticides",8,TA,H,1.452,3.63,0.4,0.4
"Cotton, upland",2014,ALABAMA,01,Herbicides,8,TH,H,0.941,2.3525,0.4,0.4
"Cotton, upland",2014,ALABAMA,01,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
"Cotton, upland",2014,ALABAMA,01,"Other Pesticides",8,TO,O,0.423,1.0575,0.4,0.4
"Cotton, upland",2013,ALABAMA,01,"All Pesticides",8,TA,H,1.452,3.63,0.4,0.4
"Cotton, upland",2013,ALABAMA,01,Herbicides,8,TH,H,0.941,2.3525,0.4,0.4
"Cotton, upland",2013,ALABAMA,01,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
"Cotton, upland",2013,ALABAMA,01,"Other Pesticides",8,TO,O,0.423,1.0575,0.4,0.4
"Cotton, upland",2012,ALABAMA,01,"All Pesticides",8,TA,H,1.452,3.63,0.4,0.4
"Cotton, upland",2012,ALABAMA,01,Herbicides,8,TH,H,0.941,2.3525,0.4,0.4
"Cotton, upland",2012,ALABAMA,01,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
"Cotton, upland",2012,ALABAMA,01,"Other Pesticides",8,TO,O,0.423,1.0575,0.4,0.4
"Cotton, upland",2011,ALABAMA,01,"All Pesticides",8,TA,H,1.452,3.63,0.4,0.4
"Cotton, upland",2011,ALABAMA,01,Herbicides,8,TH,H,0.941,2.3525,0.4,0.4
"Cotton, upland",2011,ALABAMA,01,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
"Cotton, upland",2011,ALABAMA,01,"Other Pesticides",8,TO,O,0.423,1.0575,0.4,0.4
"Cotton, upland",2010,ALABAMA,01,"All Pesticides",8,TA,H,1.452,3.63,0.4,0.4
"Cotton, upland",2010,ALABAMA,01,Herbicides,8,TH,H,0.941,2.3525,0.4,0.4
"Cotton, upland",2010,ALABAMA,01,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
"Cotton, upland",2010,ALABAMA,01,"Other Pesticides",8,TO,O,0.423,1.0575,0.4,0.4
"Cotton, upland",2009,ALABAMA,01,"All Pesticides",8,TA,H,1.452,3.63,0.4,0.4
"Cotton, upland",2009,ALABAMA,01,Herbicides,8,TH,H,0.941,2.3525,0.4,0.4
"Cotton, upland",2009,ALABAMA,01,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
"Cotton, upland",2009,ALABAMA,01,"Other Pesticides",8,TO,O,0.423,1.0575,0.4,0.4
"Cotton, upland",2008,ALABAMA,01,"All Pesticides",8,TA,H,1.452,3.63,0.4,0.4
"Cotton, upland",2008,ALABAMA,01,Herbicides,8,TH,H,0.941,2.3525,0.4,0.4
"Cotton, upland",2008,ALABAMA,01,Insecticides,8,TI,I,0.088,0.22,0.4,0.4
"Cotton, upland",2008,ALABAMA,01,"Other Pesticides",8,TO,O,0.423,1.0575,0.4,0.4
"Cotton, upland",2006,ALABAMA,01,"All Pesticides",8,TA,H,2.075,3.77272727272727,0.55,0.55
"Cotton, upland",2006,ALABAMA,01,Herbicides,8,TH,H,1.186,2.15636363636364,0.55,0.55
"Cotton, upland",2006,ALABAMA,01,Insecticides,8,TI,I,0.192,0.349090909090909,0.55,0.55
"Cotton, upland",2006,ALABAMA,01,"Other Pesticides",8,TO,O,0.697,1.26727272727273,0.55,0.55
"Cotton, upland",2005,ALABAMA,01,"All Pesticides",8,TA,H,2.075,3.77272727272727,0.55,0.55
"Cotton, upland",2005,ALABAMA,01,Herbicides,8,TH,H,1.186,2.15636363636364,0.55,0.55
"Cotton, upland",2005,ALABAMA,01,Insecticides,8,TI,I,0.192,0.349090909090909,0.55,0.55
"Cotton, upland",2005,ALABAMA,01,"Other Pesticides",8,TO,O,0.697,1.26727272727273,0.55,0.55
"Cotton, upland",2004,ALABAMA,01,"All Pesticides",8,TA,I,2.57,4.8952380952381,0.525,0.525
"Cotton, upland",2004,ALABAMA,01,Fungicides,8,TF,F,0.044,0.0838095238095238,0.525,0.525
"Cotton, upland",2004,ALABAMA,01,Herbicides,8,TH,H,1.336,2.5447619047619,0.525,0.525
"Cotton, upland",2004,ALABAMA,01,Insecticides,8,TI,I,0.26,0.495238095238095,0.525,0.525
"Cotton, upland",2004,ALABAMA,01,"Other Pesticides",8,TO,O,0.93,1.77142857142857,0.525,0.525
"Cotton, upland",2003,ALABAMA,01,"All Pesticides",8,TA,I,2.57,4.8952380952381,0.525,0.525
"Cotton, upland",2003,ALABAMA,01,Fungicides,8,TF,F,0.044,0.0838095238095238,0.525,0.525
"Cotton, upland",2003,ALABAMA,01,Herbicides,8,TH,H,1.336,2.5447619047619,0.525,0.525
"Cotton, upland",2003,ALABAMA,01,Insecticides,8,TI,I,0.26,0.495238095238095,0.525,0.525
"Cotton, upland",2003,ALABAMA,01,"Other Pesticides",8,TO,O,0.93,1.77142857142857,0.525,0.525
"Cotton, upland",2002,ALABAMA,01,"All Pesticides",8,TA,F,2.187,3.70677966101695,0.59,0.59
"Cotton, upland",2002,ALABAMA,01,Fungicides,8,TF,F,0.084,0.142372881355932,0.59,0.59
"Cotton, upland",2002,ALABAMA,01,Herbicides,8,TH,H,1.435,2.43220338983051,0.59,0.59
"Cotton, upland",2002,ALABAMA,01,Insecticides,8,TI,I,0.27,0.457627118644068,0.59,0.59
"Cotton, upland",2002,ALABAMA,01,"Other Pesticides",8,TO,O,0.398,0.674576271186441,0.59,0.59
"Cotton, upland",2001,ALABAMA,01,"All Pesticides",8,TA,F,2.187,3.70677966101695,0.59,0.59
"Cotton, upland",2001,ALABAMA,01,Fungicides,8,TF,F,0.084,0.142372881355932,0.59,0.59
"Cotton, upland",2001,ALABAMA,01,Herbicides,8,TH,H,1.435,2.43220338983051,0.59,0.59
"Cotton, upland",2001,ALABAMA,01,Insecticides,8,TI,I,0.27,0.457627118644068,0.59,0.59
"Cotton, upland",2001,ALABAMA,01,"Other Pesticides",8,TO,O,0.398,0.674576271186441,0.59,0.59
"Cotton, upland",2000,ALABAMA,01,"All Pesticides",8,TA,F,2.187,3.70677966101695,0.59,0.59
"Cotton, upland",2000,ALABAMA,01,Fungicides,8,TF,F,0.084,0.142372881355932,0.59,0.59
"Cotton, upland",2000,ALABAMA,01,Herbicides,8,TH,H,1.435,2.43220338983051,0.59,0.59
"Cotton, upland",2000,ALABAMA,01,Insecticides,8,TI,I,0.27,0.457627118644068,0.59,0.59
"Cotton, upland",2000,ALABAMA,01,"Other Pesticides",8,TO,O,0.398,0.674576271186441,0.59,0.59
"Cotton, upland",1999,ALABAMA,01,"All Pesticides",8,TA,H,2.337,4.13628318584071,0.565,0.565
"Cotton, upland",1999,ALABAMA,01,Fungicides,8,TF,F,0.13,0.230088495575221,0.565,0.565
"Cotton, upland",1999,ALABAMA,01,Herbicides,8,TH,H,1.154,2.04247787610619,0.565,0.565
"Cotton, upland",1999,ALABAMA,01,Insecticides,8,TI,I,0.436,0.771681415929204,0.565,0.565
"Cotton, upland",1999,ALABAMA,01,"Other Pesticides",8,TO,O,0.617,1.09203539823009,0.565,0.565
"Cotton, upland",1998,ALABAMA,01,"All Pesticides",8,TA,F,2.228,4.5010101010101,0.495,0.495
"Cotton, upland",1998,ALABAMA,01,Fungicides,8,TF,F,0.052,0.105050505050505,0.495,0.495
"Cotton, upland",1998,ALABAMA,01,Herbicides,8,TH,H,1.3,2.62626262626263,0.495,0.495
"Cotton, upland",1998,ALABAMA,01,Insecticides,8,TI,I,0.422,0.852525252525252,0.495,0.495
"Cotton, upland",1998,ALABAMA,01,"Other Pesticides",8,TO,O,0.454,0.917171717171717,0.495,0.495
"Cotton, upland",1997,ALABAMA,01,"All Pesticides",8,TA,O,2.64,4.93457943925234,0.535,0.535
"Cotton, upland",1997,ALABAMA,01,Fungicides,8,TF,F,0.022,0.0411214953271028,0.535,0.535
"Cotton, upland",1997,ALABAMA,01,Herbicides,8,TH,H,1.667,3.11588785046729,0.535,0.535
"Cotton, upland",1997,ALABAMA,01,Insecticides,8,TI,I,0.469,0.876635514018691,0.535,0.535
"Cotton, upland",1997,ALABAMA,01,"Other Pesticides",8,TO,O,0.482,0.900934579439252,0.535,0.535
"Cotton, upland",2014,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2014,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2014,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2014,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2013,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2013,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2013,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2013,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2012,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2012,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2012,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2012,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2011,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2011,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2011,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2011,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2010,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2010,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2010,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2010,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2009,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2009,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2009,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2009,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2008,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2008,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2008,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2008,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2007,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2007,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2007,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2007,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2006,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2006,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2006,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2006,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2005,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2005,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2005,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2005,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2004,ARIZONA,04,"All Pesticides",8,TA,O,1.079,5.01860465116279,0.215,0.215
"Cotton, upland",2004,ARIZONA,04,Herbicides,8,TH,H,0.382,1.77674418604651,0.215,0.215
"Cotton, upland",2004,ARIZONA,04,Insecticides,8,TI,I,0.374,1.73953488372093,0.215,0.215
"Cotton, upland",2004,ARIZONA,04,"Other Pesticides",8,TO,O,0.323,1.50232558139535,0.215,0.215
"Cotton, upland",2002,ARIZONA,04,"All Pesticides",8,TA,H,1.622,5.79285714285714,0.28,0.28
"Cotton, upland",2002,ARIZONA,04,Herbicides,8,TH,H,0.497,1.775,0.28,0.28
"Cotton, upland",2002,ARIZONA,04,Insecticides,8,TI,I,0.455,1.625,0.28,0.28
"Cotton, upland",2002,ARIZONA,04,"Other Pesticides",8,TO,O,0.67,2.39285714285714,0.28,0.28
"Cotton, upland",2001,ARIZONA,04,"All Pesticides",8,TA,H,1.622,5.79285714285714,0.28,0.28
"Cotton, upland",2001,ARIZONA,04,Herbicides,8,TH,H,0.497,1.775,0.28,0.28
"Cotton, upland",2001,ARIZONA,04,Insecticides,8,TI,I,0.455,1.625,0.28,0.28
"Cotton, upland",2001,ARIZONA,04,"Other Pesticides",8,TO,O,0.67,2.39285714285714,0.28,0.28
"Cotton, upland",2000,ARIZONA,04,"All Pesticides",8,TA,H,1.622,5.79285714285714,0.28,0.28
"Cotton, upland",2000,ARIZONA,04,Herbicides,8,TH,H,0.497,1.775,0.28,0.28
"Cotton, upland",2000,ARIZONA,04,Insecticides,8,TI,I,0.455,1.625,0.28,0.28
"Cotton, upland",2000,ARIZONA,04,"Other Pesticides",8,TO,O,0.67,2.39285714285714,0.28,0.28
"Cotton, upland",1999,ARIZONA,04,"All Pesticides",8,TA,I,2.246,8.31851851851852,0.27,0.27
"Cotton, upland",1999,ARIZONA,04,Fungicides,8,TF,F,0.006,0.024,0.25,0.25
"Cotton, upland",1999,ARIZONA,04,Herbicides,8,TH,H,0.519,1.92222222222222,0.27,0.27
"Cotton, upland",1999,ARIZONA,04,Insecticides,8,TI,I,0.36,1.33333333333333,0.27,0.27
"Cotton, upland",1999,ARIZONA,04,"Other Pesticides",8,TO,O,1.361,5.04074074074074,0.27,0.27
"Cotton, upland",1998,ARIZONA,04,"All Pesticides",8,TA,I,2.056,8.224,0.25,0.25
"Cotton, upland",1998,ARIZONA,04,Fungicides,8,TF,F,0.006,0.024,0.25,0.25
"Cotton, upland",1998,ARIZONA,04,Herbicides,8,TH,H,0.426,1.704,0.25,0.25
"Cotton, upland",1998,ARIZONA,04,Insecticides,8,TI,I,0.677,2.708,0.25,0.25
"Cotton, upland",1998,ARIZONA,04,"Other Pesticides",8,TO,O,0.947,3.788,0.25,0.25
"Cotton, upland",1997,ARIZONA,04,"All Pesticides",8,TA,I,2.009,6.18153846153846,0.325,0.325
"Cotton, upland",1997,ARIZONA,04,Fungicides,8,TF,F,,,0.316,0.316
"Cotton, upland",1997,ARIZONA,04,Herbicides,8,TH,H,0.534,1.64307692307692,0.325,0.325
"Cotton, upland",1997,ARIZONA,04,Insecticides,8,TI,I,0.705,2.16923076923077,0.325,0.325
"Cotton, upland",1997,ARIZONA,04,"Other Pesticides",8,TO,O,0.77,2.36923076923077,0.325,0.325
"Cotton, upland",1996,ARIZONA,04,"All Pesticides",8,TA,I,3.089,9.80634920634921,0.315,0.315
"Cotton, upland",1996,ARIZONA,04,Fungicides,8,TF,F,,,0.316,0.316
"Cotton, upland",1996,ARIZONA,04,Herbicides,8,TH,H,0.357,1.13333333333333,0.315,0.315
"Cotton, upland",1996,ARIZONA,04,Insecticides,8,TI,I,1.029,3.26666666666667,0.315,0.315
"Cotton, upland",1996,ARIZONA,04,"Other Pesticides",8,TO,O,1.703,5.40634920634921,0.315,0.315
"Cotton, upland",1995,ARIZONA,04,"All Pesticides",8,TA,O,3.919,10.7369863013699,0.365,0.365
"Cotton, upland",1995,ARIZONA,04,Fungicides,8,TF,F,,,0.316,0.316
"Cotton, upland",1995,ARIZONA,04,Herbicides,8,TH,H,0.484,1.32602739726027,0.365,0.365
"Cotton, upland",1995,ARIZONA,04,Insecticides,8,TI,I,1.709,4.68219178082192,0.365,0.365
"Cotton, upland",1995,ARIZONA,04,"Other Pesticides",8,TO,O,1.726,4.72876712328767,0.365,0.365
"Cotton, upland",1994,ARIZONA,04,"All Pesticides",8,TA,H,2.579,8.23961661341853,0.313,0.313
"Cotton, upland",1994,ARIZONA,04,Fungicides,8,TF,F,,,0.316,0.316
"Cotton, upland",1994,ARIZONA,04,Herbicides,8,TH,H,0.358,1.14376996805112,0.313,0.313
"Cotton, upland",1994,ARIZONA,04,Insecticides,8,TI,I,1.123,3.58785942492013,0.313,0.313
"Cotton, upland",1994,ARIZONA,04,"Other Pesticides",8,TO,O,1.098,3.50798722044728,0.313,0.313
"Cotton, upland",1993,ARIZONA,04,"All Pesticides",8,TA,I,2.038,6.4493670886076,0.316,0.316
"Cotton, upland",1993,ARIZONA,04,Fungicides,8,TF,F,,,0.316,0.316
"Cotton, upland",1993,ARIZONA,04,Herbicides,8,TH,H,0.372,1.17721518987342,0.316,0.316
"Cotton, upland",1993,ARIZONA,04,Insecticides,8,TI,I,0.808,2.55696202531646,0.316,0.316
"Cotton, upland",1993,ARIZONA,04,"Other Pesticides",8,TO,O,0.858,2.71518987341772,0.316,0.316
"Cotton, upland",1992,ARIZONA,04,"All Pesticides",8,TA,H,2.441,7.51076923076923,0.325,0.325
"Cotton, upland",1992,ARIZONA,04,Fungicides,8,TF,F,,,0.325,0.325
"Cotton, upland",1992,ARIZONA,04,Herbicides,8,TH,H,0.291,0.895384615384615,0.325,0.325
"Cotton, upland",1992,ARIZONA,04,Insecticides,8,TI,I,1.179,3.62769230769231,0.325,0.325
"Cotton, upland",1992,ARIZONA,04,"Other Pesticides",8,TO,O,0.971,2.98769230769231,0.325,0.325
"Cotton, upland",1991,ARIZONA,04,"All Pesticides",8,TA,I,3.346,9.29444444444444,0.36,0.36
"Cotton, upland",1991,ARIZONA,04,Fungicides,8,TF,F,,,0.36,0.36
"Cotton, upland",1991,ARIZONA,04,Herbicides,8,TH,H,0.419,1.16388888888889,0.36,0.36
"Cotton, upland",1991,ARIZONA,04,Insecticides,8,TI,I,1.449,4.025,0.36,0.36
"Cotton, upland",1991,ARIZONA,04,"Other Pesticides",8,TO,O,1.478,4.10555555555556,0.36,0.36
"Cotton, upland",2014,ARKANSAS,05,"All Pesticides",8,TA,O,3.715,6.81651376146789,0.545,0.545
"Cotton, upland",2014,ARKANSAS,05,Herbicides,8,TH,H,1.587,2.91192660550459,0.545,0.545
"Cotton, upland",2014,ARKANSAS,05,Insecticides,8,TI,I,0.655,1.20183486238532,0.545,0.545
"Cotton, upland",2014,ARKANSAS,05,"Other Pesticides",8,TO,O,1.473,2.70275229357798,0.545,0.545
"Cotton, upland",2013,ARKANSAS,05,"All Pesticides",8,TA,O,3.715,6.81651376146789,0.545,0.545
"Cotton, upland",2013,ARKANSAS,05,Herbicides,8,TH,H,1.587,2.91192660550459,0.545,0.545
"Cotton, upland",2013,ARKANSAS,05,Insecticides,8,TI,I,0.655,1.20183486238532,0.545,0.545
"Cotton, upland",2013,ARKANSAS,05,"Other Pesticides",8,TO,O,1.473,2.70275229357798,0.545,0.545
"Cotton, upland",2012,ARKANSAS,05,"All Pesticides",8,TA,O,3.715,6.81651376146789,0.545,0.545
"Cotton, upland",2012,ARKANSAS,05,Herbicides,8,TH,H,1.587,2.91192660550459,0.545,0.545
"Cotton, upland",2012,ARKANSAS,05,Insecticides,8,TI,I,0.655,1.20183486238532,0.545,0.545
"Cotton, upland",2012,ARKANSAS,05,"Other Pesticides",8,TO,O,1.473,2.70275229357798,0.545,0.545
"Cotton, upland",2011,ARKANSAS,05,"All Pesticides",8,TA,O,3.715,6.81651376146789,0.545,0.545
"Cotton, upland",2011,ARKANSAS,05,Herbicides,8,TH,H,1.587,2.91192660550459,0.545,0.545
"Cotton, upland",2011,ARKANSAS,05,Insecticides,8,TI,I,0.655,1.20183486238532,0.545,0.545
"Cotton, upland",2011,ARKANSAS,05,"Other Pesticides",8,TO,O,1.473,2.70275229357798,0.545,0.545
"Cotton, upland",2009,ARKANSAS,05,"All Pesticides",8,TA,I,5.271,6.12906976744186,0.86,0.86
"Cotton, upland",2009,ARKANSAS,05,Herbicides,8,TH,H,2.399,2.78953488372093,0.86,0.86
"Cotton, upland",2009,ARKANSAS,05,Insecticides,8,TI,I,1.092,1.26976744186047,0.86,0.86
"Cotton, upland",2009,ARKANSAS,05,"Other Pesticides",8,TO,O,1.78,2.06976744186047,0.86,0.86
"Cotton, upland",2008,ARKANSAS,05,"All Pesticides",8,TA,I,5.271,6.12906976744186,0.86,0.86
"Cotton, upland",2008,ARKANSAS,05,Herbicides,8,TH,H,2.399,2.78953488372093,0.86,0.86
"Cotton, upland",2008,ARKANSAS,05,Insecticides,8,TI,I,1.092,1.26976744186047,0.86,0.86
"Cotton, upland",2008,ARKANSAS,05,"Other Pesticides",8,TO,O,1.78,2.06976744186047,0.86,0.86
"Cotton, upland",2007,ARKANSAS,05,"All Pesticides",8,TA,I,5.271,6.12906976744186,0.86,0.86
"Cotton, upland",2007,ARKANSAS,05,Herbicides,8,TH,H,2.399,2.78953488372093,0.86,0.86
"Cotton, upland",2007,ARKANSAS,05,Insecticides,8,TI,I,1.092,1.26976744186047,0.86,0.86
"Cotton, upland",2007,ARKANSAS,05,"Other Pesticides",8,TO,O,1.78,2.06976744186047,0.86,0.86
"Cotton, upland",2006,ARKANSAS,05,"All Pesticides",8,TA,O,7.594,7.23238095238095,1.05,1.05
"Cotton, upland",2006,ARKANSAS,05,Fungicides,8,TF,F,0.018,0.0171428571428571,1.05,1.05
"Cotton, upland",2006,ARKANSAS,05,Herbicides,8,TH,H,2.997,2.85428571428571,1.05,1.05
"Cotton, upland",2006,ARKANSAS,05,Insecticides,8,TI,I,2.669,2.54190476190476,1.05,1.05
"Cotton, upland",2006,ARKANSAS,05,"Other Pesticides",8,TO,O,1.91,1.81904761904762,1.05,1.05
"Cotton, upland",2005,ARKANSAS,05,"All Pesticides",8,TA,O,7.594,7.23238095238095,1.05,1.05
"Cotton, upland",2005,ARKANSAS,05,Fungicides,8,TF,F,0.018,0.0171428571428571,1.05,1.05
"Cotton, upland",2005,ARKANSAS,05,Herbicides,8,TH,H,2.997,2.85428571428571,1.05,1.05
"Cotton, upland",2005,ARKANSAS,05,Insecticides,8,TI,I,2.669,2.54190476190476,1.05,1.05
"Cotton, upland",2005,ARKANSAS,05,"Other Pesticides",8,TO,O,1.91,1.81904761904762,1.05,1.05
"Cotton, upland",2004,ARKANSAS,05,"All Pesticides",8,TA,I,8.289,8.45816326530612,0.98,0.98
"Cotton, upland",2004,ARKANSAS,05,Fungicides,8,TF,F,0.064,0.0653061224489796,0.98,0.98
"Cotton, upland",2004,ARKANSAS,05,Herbicides,8,TH,H,2.703,2.75816326530612,0.98,0.98
"Cotton, upland",2004,ARKANSAS,05,Insecticides,8,TI,I,3.575,3.64795918367347,0.98,0.98
"Cotton, upland",2004,ARKANSAS,05,"Other Pesticides",8,TO,O,1.947,1.98673469387755,0.98,0.98
"Cotton, upland",2003,ARKANSAS,05,"All Pesticides",8,TA,I,8.289,8.45816326530612,0.98,0.98
"Cotton, upland",2003,ARKANSAS,05,Fungicides,8,TF,F,0.064,0.0653061224489796,0.98,0.98
"Cotton, upland",2003,ARKANSAS,05,Herbicides,8,TH,H,2.703,2.75816326530612,0.98,0.98
"Cotton, upland",2003,ARKANSAS,05,Insecticides,8,TI,I,3.575,3.64795918367347,0.98,0.98
"Cotton, upland",2003,ARKANSAS,05,"Other Pesticides",8,TO,O,1.947,1.98673469387755,0.98,0.98
"Cotton, upland",2002,ARKANSAS,05,"All Pesticides",8,TA,H,5.754,5.32777777777778,1.08,1.08
"Cotton, upland",2002,ARKANSAS,05,Fungicides,8,TF,F,0.009,0.00833333333333333,1.08,1.08
"Cotton, upland",2002,ARKANSAS,05,Herbicides,8,TH,H,2.312,2.14074074074074,1.08,1.08
"Cotton, upland",2002,ARKANSAS,05,Insecticides,8,TI,I,2.038,1.88703703703704,1.08,1.08
"Cotton, upland",2002,ARKANSAS,05,"Other Pesticides",8,TO,O,1.395,1.29166666666667,1.08,1.08
"Cotton, upland",2001,ARKANSAS,05,"All Pesticides",8,TA,H,5.754,5.32777777777778,1.08,1.08
"Cotton, upland",2001,ARKANSAS,05,Fungicides,8,TF,F,0.009,0.00833333333333333,1.08,1.08
"Cotton, upland",2001,ARKANSAS,05,Herbicides,8,TH,H,2.312,2.14074074074074,1.08,1.08
"Cotton, upland",2001,ARKANSAS,05,Insecticides,8,TI,I,2.038,1.88703703703704,1.08,1.08
"Cotton, upland",2001,ARKANSAS,05,"Other Pesticides",8,TO,O,1.395,1.29166666666667,1.08,1.08
"Cotton, upland",2000,ARKANSAS,05,"All Pesticides",8,TA,I,5.119,5.33229166666667,0.96,0.96
"Cotton, upland",2000,ARKANSAS,05,Fungicides,8,TF,F,0.057,0.059375,0.96,0.96
"Cotton, upland",2000,ARKANSAS,05,Herbicides,8,TH,H,1.993,2.07604166666667,0.96,0.96
"Cotton, upland",2000,ARKANSAS,05,Insecticides,8,TI,I,1.61,1.67708333333333,0.96,0.96
"Cotton, upland",2000,ARKANSAS,05,"Other Pesticides",8,TO,O,1.459,1.51979166666667,0.96,0.96
"Cotton, upland",1999,ARKANSAS,05,"All Pesticides",8,TA,I,5.361,5.52680412371134,0.97,0.97
"Cotton, upland",1999,ARKANSAS,05,Fungicides,8,TF,F,0.14,0.144329896907217,0.97,0.97
"Cotton, upland",1999,ARKANSAS,05,Herbicides,8,TH,H,1.949,2.00927835051546,0.97,0.97
"Cotton, upland",1999,ARKANSAS,05,Insecticides,8,TI,I,0.9,0.927835051546392,0.97,0.97
"Cotton, upland",1999,ARKANSAS,05,"Other Pesticides",8,TO,O,2.372,2.44536082474227,0.97,0.97
"Cotton, upland",1998,ARKANSAS,05,"All Pesticides",8,TA,I,4.566,4.96304347826087,0.92,0.92
"Cotton, upland",1998,ARKANSAS,05,Fungicides,8,TF,F,0.071,0.0771739130434782,0.92,0.92
"Cotton, upland",1998,ARKANSAS,05,Herbicides,8,TH,H,2.119,2.30326086956522,0.92,0.92
"Cotton, upland",1998,ARKANSAS,05,Insecticides,8,TI,I,0.886,0.96304347826087,0.92,0.92
"Cotton, upland",1998,ARKANSAS,05,"Other Pesticides",8,TO,O,1.49,1.6195652173913,0.92,0.92
"Cotton, upland",1997,ARKANSAS,05,"All Pesticides",8,TA,H,4.978,5.07959183673469,0.98,0.98
"Cotton, upland",1997,ARKANSAS,05,Fungicides,8,TF,F,0.083,0.0846938775510204,0.98,0.98
"Cotton, upland",1997,ARKANSAS,05,Herbicides,8,TH,H,2.882,2.94081632653061,0.98,0.98
"Cotton, upland",1997,ARKANSAS,05,Insecticides,8,TI,I,0.678,0.691836734693878,0.98,0.98
"Cotton, upland",1997,ARKANSAS,05,"Other Pesticides",8,TO,O,1.335,1.36224489795918,0.98,0.98
"Cotton, upland",1996,ARKANSAS,05,"All Pesticides",8,TA,F,5.416,5.416,1.0,1.0
"Cotton, upland",1996,ARKANSAS,05,Fungicides,8,TF,F,0.157,0.157,1.0,1.0
"Cotton, upland",1996,ARKANSAS,05,Herbicides,8,TH,H,2.75,2.75,1.0,1.0
"Cotton, upland",1996,ARKANSAS,05,Insecticides,8,TI,I,1.303,1.303,1.0,1.0
"Cotton, upland",1996,ARKANSAS,05,"Other Pesticides",8,TO,O,1.206,1.206,1.0,1.0
"Cotton, upland",1995,ARKANSAS,05,"All Pesticides",8,TA,F,6.717,5.74102564102564,1.17,1.17
"Cotton, upland",1995,ARKANSAS,05,Fungicides,8,TF,F,0.201,0.171794871794872,1.17,1.17
"Cotton, upland",1995,ARKANSAS,05,Herbicides,8,TH,H,4.208,3.5965811965812,1.17,1.17
"Cotton, upland",1995,ARKANSAS,05,Insecticides,8,TI,I,1.527,1.30512820512821,1.17,1.17
"Cotton, upland",1995,ARKANSAS,05,"Other Pesticides",8,TO,O,0.781,0.667521367521368,1.17,1.17
"Cotton, upland",1994,ARKANSAS,05,"All Pesticides",8,TA,O,7.054,7.19795918367347,0.98,0.98
"Cotton, upland",1994,ARKANSAS,05,Fungicides,8,TF,F,0.162,0.16530612244898,0.98,0.98
"Cotton, upland",1994,ARKANSAS,05,Herbicides,8,TH,H,4.057,4.13979591836735,0.98,0.98
"Cotton, upland",1994,ARKANSAS,05,Insecticides,8,TI,I,1.584,1.61632653061224,0.98,0.98
"Cotton, upland",1994,ARKANSAS,05,"Other Pesticides",8,TO,O,1.251,1.2765306122449,0.98,0.98
"Cotton, upland",1993,ARKANSAS,05,"All Pesticides",8,TA,F,6.166,6.22828282828283,0.99,0.99
"Cotton, upland",1993,ARKANSAS,05,Fungicides,8,TF,F,0.102,0.103030303030303,0.99,0.99
"Cotton, upland",1993,ARKANSAS,05,Herbicides,8,TH,H,3.331,3.36464646464646,0.99,0.99
"Cotton, upland",1993,ARKANSAS,05,Insecticides,8,TI,I,1.55,1.56565656565657,0.99,0.99
"Cotton, upland",1993,ARKANSAS,05,"Other Pesticides",8,TO,O,1.183,1.19494949494949,0.99,0.99
"Cotton, upland",1992,ARKANSAS,05,"All Pesticides",8,TA,O,5.097,5.097,1.0,1.0
"Cotton, upland",1992,ARKANSAS,05,Fungicides,8,TF,F,0.115,0.115,1.0,1.0
"Cotton, upland",1992,ARKANSAS,05,Herbicides,8,TH,H,3.497,3.497,1.0,1.0
"Cotton, upland",1992,ARKANSAS,05,Insecticides,8,TI,I,0.68,0.68,1.0,1.0
"Cotton, upland",1992,ARKANSAS,05,"Other Pesticides",8,TO,O,0.805,0.805,1.0,1.0
"Cotton, upland",1991,ARKANSAS,05,"All Pesticides",8,TA,O,3.689,3.689,1.0,1.0
"Cotton, upland",1991,ARKANSAS,05,Fungicides,8,TF,F,,,1.0,1.0
"Cotton, upland",1991,ARKANSAS,05,Herbicides,8,TH,H,2.868,2.868,1.0,1.0
"Cotton, upland",1991,ARKANSAS,05,Insecticides,8,TI,I,0.24,0.24,1.0,1.0
"Cotton, upland",1991,ARKANSAS,05,"Other Pesticides",8,TO,O,0.581,0.581,1.0,1.0
"Cotton, upland",2014,CALIFORNIA,06,"All Pesticides",8,TA,O,2.486,5.46373626373626,0.455,0.455
"Cotton, upland",2014,CALIFORNIA,06,Fungicides,8,TF,F,0.001,0.0021978021978022,0.455,0.455
"Cotton, upland",2014,CALIFORNIA,06,Herbicides,8,TH,H,0.565,1.24175824175824,0.455,0.455
"Cotton, upland",2014,CALIFORNIA,06,Insecticides,8,TI,I,0.506,1.11208791208791,0.455,0.455
"Cotton, upland",2014,CALIFORNIA,06,"Other Pesticides",8,TO,O,1.414,3.10769230769231,0.455,0.455
"Cotton, upland",2013,CALIFORNIA,06,"All Pesticides",8,TA,O,2.486,5.46373626373626,0.455,0.455
"Cotton, upland",2013,CALIFORNIA,06,Fungicides,8,TF,F,0.001,0.0021978021978022,0.455,0.455
"Cotton, upland",2013,CALIFORNIA,06,Herbicides,8,TH,H,0.565,1.24175824175824,0.455,0.455
"Cotton, upland",2013,CALIFORNIA,06,Insecticides,8,TI,I,0.506,1.11208791208791,0.455,0.455
"Cotton, upland",2013,CALIFORNIA,06,"Other Pesticides",8,TO,O,1.414,3.10769230769231,0.455,0.455
"Cotton, upland",2012,CALIFORNIA,06,"All Pesticides",8,TA,O,2.486,5.46373626373626,0.455,0.455
"Cotton, upland",2012,CALIFORNIA,06,Fungicides,8,TF,F,0.001,0.0021978021978022,0.455,0.455
"Cotton, upland",2012,CALIFORNIA,06,Herbicides,8,TH,H,0.565,1.24175824175824,0.455,0.455
"Cotton, upland",2012,CALIFORNIA,06,Insecticides,8,TI,I,0.506,1.11208791208791,0.455,0.455
"Cotton, upland",2012,CALIFORNIA,06,"Other Pesticides",8,TO,O,1.414,3.10769230769231,0.455,0.455
"Cotton, upland",2011,CALIFORNIA,06,"All Pesticides",8,TA,O,2.486,5.46373626373626,0.455,0.455
"Cotton, upland",2011,CALIFORNIA,06,Fungicides,8,TF,F,0.001,0.0021978021978022,0.455,0.455
"Cotton, upland",2011,CALIFORNIA,06,Herbicides,8,TH,H,0.565,1.24175824175824,0.455,0.455
"Cotton, upland",2011,CALIFORNIA,06,Insecticides,8,TI,I,0.506,1.11208791208791,0.455,0.455
"Cotton, upland",2011,CALIFORNIA,06,"Other Pesticides",8,TO,O,1.414,3.10769230769231,0.455,0.455
"Cotton, upland",2010,CALIFORNIA,06,"All Pesticides",8,TA,O,2.486,5.46373626373626,0.455,0.455
"Cotton, upland",2010,CALIFORNIA,06,Fungicides,8,TF,F,0.001,0.0021978021978022,0.455,0.455
"Cotton, upland",2010,CALIFORNIA,06,Herbicides,8,TH,H,0.565,1.24175824175824,0.455,0.455
"Cotton, upland",2010,CALIFORNIA,06,Insecticides,8,TI,I,0.506,1.11208791208791,0.455,0.455
"Cotton, upland",2010,CALIFORNIA,06,"Other Pesticides",8,TO,O,1.414,3.10769230769231,0.455,0.455
"Cotton, upland",2009,CALIFORNIA,06,"All Pesticides",8,TA,O,2.486,5.46373626373626,0.455,0.455
"Cotton, upland",2009,CALIFORNIA,06,Fungicides,8,TF,F,0.001,0.0021978021978022,0.455,0.455
"Cotton, upland",2009,CALIFORNIA,06,Herbicides,8,TH,H,0.565,1.24175824175824,0.455,0.455
"Cotton, upland",2009,CALIFORNIA,06,Insecticides,8,TI,I,0.506,1.11208791208791,0.455,0.455
"Cotton, upland",2009,CALIFORNIA,06,"Other Pesticides",8,TO,O,1.414,3.10769230769231,0.455,0.455
"Cotton, upland",2008,CALIFORNIA,06,"All Pesticides",8,TA,O,2.486,5.46373626373626,0.455,0.455
"Cotton, upland",2008,CALIFORNIA,06,Fungicides,8,TF,F,0.001,0.0021978021978022,0.455,0.455
"Cotton, upland",2008,CALIFORNIA,06,Herbicides,8,TH,H,0.565,1.24175824175824,0.455,0.455
"Cotton, upland",2008,CALIFORNIA,06,Insecticides,8,TI,I,0.506,1.11208791208791,0.455,0.455
"Cotton, upland",2008,CALIFORNIA,06,"Other Pesticides",8,TO,O,1.414,3.10769230769231,0.455,0.455
"Cotton, upland",2006,CALIFORNIA,06,"All Pesticides",8,TA,F,2.697,6.27209302325581,0.43,0.43
"Cotton, upland",2006,CALIFORNIA,06,Fungicides,8,TF,F,0.002,0.00465116279069767,0.43,0.43
"Cotton, upland",2006,CALIFORNIA,06,Herbicides,8,TH,H,0.551,1.28139534883721,0.43,0.43
"Cotton, upland",2006,CALIFORNIA,06,Insecticides,8,TI,I,0.574,1.33488372093023,0.43,0.43
"Cotton, upland",2006,CALIFORNIA,06,"Other Pesticides",8,TO,O,1.57,3.65116279069767,0.43,0.43
"Cotton, upland",2005,CALIFORNIA,06,"All Pesticides",8,TA,F,2.697,6.27209302325581,0.43,0.43
"Cotton, upland",2005,CALIFORNIA,06,Fungicides,8,TF,F,0.002,0.00465116279069767,0.43,0.43
"Cotton, upland",2005,CALIFORNIA,06,Herbicides,8,TH,H,0.551,1.28139534883721,0.43,0.43
"Cotton, upland",2005,CALIFORNIA,06,Insecticides,8,TI,I,0.574,1.33488372093023,0.43,0.43
"Cotton, upland",2005,CALIFORNIA,06,"Other Pesticides",8,TO,O,1.57,3.65116279069767,0.43,0.43
"Cotton, upland",2004,CALIFORNIA,06,"All Pesticides",8,TA,O,4.008,7.28727272727273,0.55,0.55
"Cotton, upland",2004,CALIFORNIA,06,Fungicides,8,TF,F,0.013,0.0236363636363636,0.55,0.55
"Cotton, upland",2004,CALIFORNIA,06,Herbicides,8,TH,H,1.005,1.82727272727273,0.55,0.55
"Cotton, upland",2004,CALIFORNIA,06,Insecticides,8,TI,I,0.899,1.63454545454545,0.55,0.55
"Cotton, upland",2004,CALIFORNIA,06,"Other Pesticides",8,TO,O,2.091,3.80181818181818,0.55,0.55
"Cotton, upland",2003,CALIFORNIA,06,"All Pesticides",8,TA,O,4.008,7.28727272727273,0.55,0.55
"Cotton, upland",2003,CALIFORNIA,06,Fungicides,8,TF,F,0.013,0.0236363636363636,0.55,0.55
"Cotton, upland",2003,CALIFORNIA,06,Herbicides,8,TH,H,1.005,1.82727272727273,0.55,0.55
"Cotton, upland",2003,CALIFORNIA,06,Insecticides,8,TI,I,0.899,1.63454545454545,0.55,0.55
"Cotton, upland",2003,CALIFORNIA,06,"Other Pesticides",8,TO,O,2.091,3.80181818181818,0.55,0.55
"Cotton, upland",2002,CALIFORNIA,06,"All Pesticides",8,TA,H,5.249,6.77290322580645,0.775,0.775
"Cotton, upland",2002,CALIFORNIA,06,Fungicides,8,TF,F,0.009,0.0116129032258065,0.775,0.775
"Cotton, upland",2002,CALIFORNIA,06,Herbicides,8,TH,H,1.475,1.90322580645161,0.775,0.775
"Cotton, upland",2002,CALIFORNIA,06,Insecticides,8,TI,I,1.051,1.35612903225806,0.775,0.775
"Cotton, upland",2002,CALIFORNIA,06,"Other Pesticides",8,TO,O,2.714,3.50193548387097,0.775,0.775
"Cotton, upland",2001,CALIFORNIA,06,"All Pesticides",8,TA,H,5.249,6.77290322580645,0.775,0.775
"Cotton, upland",2001,CALIFORNIA,06,Fungicides,8,TF,F,0.009,0.0116129032258065,0.775,0.775
"Cotton, upland",2001,CALIFORNIA,06,Herbicides,8,TH,H,1.475,1.90322580645161,0.775,0.775
"Cotton, upland",2001,CALIFORNIA,06,Insecticides,8,TI,I,1.051,1.35612903225806,0.775,0.775
"Cotton, upland",2001,CALIFORNIA,06,"Other Pesticides",8,TO,O,2.714,3.50193548387097,0.775,0.775
"Cotton, upland",2000,CALIFORNIA,06,"All Pesticides",8,TA,H,5.249,6.77290322580645,0.775,0.775
"Cotton, upland",2000,CALIFORNIA,06,Fungicides,8,TF,F,0.009,0.0116129032258065,0.775,0.775
"Cotton, upland",2000,CALIFORNIA,06,Herbicides,8,TH,H,1.475,1.90322580645161,0.775,0.775
"Cotton, upland",2000,CALIFORNIA,06,Insecticides,8,TI,I,1.051,1.35612903225806,0.775,0.775
"Cotton, upland",2000,CALIFORNIA,06,"Other Pesticides",8,TO,O,2.714,3.50193548387097,0.775,0.775
"Cotton, upland",1999,CALIFORNIA,06,"All Pesticides",8,TA,H,4.28,7.01639344262295,0.61,0.61
"Cotton, upland",1999,CALIFORNIA,06,Fungicides,8,TF,F,0.007,0.0114754098360656,0.61,0.61
"Cotton, upland",1999,CALIFORNIA,06,Herbicides,8,TH,H,1.006,1.64918032786885,0.61,0.61
"Cotton, upland",1999,CALIFORNIA,06,Insecticides,8,TI,I,0.861,1.41147540983607,0.61,0.61
"Cotton, upland",1999,CALIFORNIA,06,"Other Pesticides",8,TO,O,2.406,3.94426229508197,0.61,0.61
"Cotton, upland",1998,CALIFORNIA,06,"All Pesticides",8,TA,F,3.29,3.13333333333333,1.05,1.05
"Cotton, upland",1998,CALIFORNIA,06,Fungicides,8,TF,F,,,1.05,1.05
"Cotton, upland",1998,CALIFORNIA,06,Herbicides,8,TH,H,0.879,1.35230769230769,0.65,0.65
"Cotton, upland",1998,CALIFORNIA,06,Insecticides,8,TI,I,0.8,1.23076923076923,0.65,0.65
"Cotton, upland",1998,CALIFORNIA,06,"Other Pesticides",8,TO,O,1.611,2.47846153846154,0.65,0.65
"Cotton, upland",1997,CALIFORNIA,06,"All Pesticides",8,TA,H,6.94,7.88636363636364,0.88,0.88
"Cotton, upland",1997,CALIFORNIA,06,Fungicides,8,TF,F,,,1.05,1.05
"Cotton, upland",1997,CALIFORNIA,06,Herbicides,8,TH,H,1.227,1.39431818181818,0.88,0.88
"Cotton, upland",1997,CALIFORNIA,06,Insecticides,8,TI,I,2.242,2.54772727272727,0.88,0.88
"Cotton, upland",1997,CALIFORNIA,06,"Other Pesticides",8,TO,O,3.471,3.94431818181818,0.88,0.88
"Cotton, upland",1996,CALIFORNIA,06,"All Pesticides",8,TA,F,9.067,8.6352380952381,1.05,1.05
"Cotton, upland",1996,CALIFORNIA,06,Fungicides,8,TF,F,,,1.05,1.05
"Cotton, upland",1996,CALIFORNIA,06,Herbicides,8,TH,H,1.856,1.856,1.0,1.0
"Cotton, upland",1996,CALIFORNIA,06,Insecticides,8,TI,I,2.031,2.031,1.0,1.0
"Cotton, upland",1996,CALIFORNIA,06,"Other Pesticides",8,TO,O,5.18,5.18,1.0,1.0
"Cotton, upland",1995,CALIFORNIA,06,"All Pesticides",8,TA,F,11.409,10.8657142857143,1.05,1.05
"Cotton, upland",1995,CALIFORNIA,06,Fungicides,8,TF,F,,,1.05,1.05
"Cotton, upland",1995,CALIFORNIA,06,Herbicides,8,TH,H,1.861,1.59059829059829,1.17,1.17
"Cotton, upland",1995,CALIFORNIA,06,Insecticides,8,TI,I,2.835,2.42307692307692,1.17,1.17
"Cotton, upland",1995,CALIFORNIA,06,"Other Pesticides",8,TO,O,6.713,5.73760683760684,1.17,1.17
"Cotton, upland",1994,CALIFORNIA,06,"All Pesticides",8,TA,F,8.045,7.66190476190476,1.05,1.05
"Cotton, upland",1994,CALIFORNIA,06,Fungicides,8,TF,F,,,1.05,1.05
"Cotton, upland",1994,CALIFORNIA,06,Herbicides,8,TH,H,1.613,1.46636363636364,1.1,1.1
"Cotton, upland",1994,CALIFORNIA,06,Insecticides,8,TI,I,1.787,1.62454545454545,1.1,1.1
"Cotton, upland",1994,CALIFORNIA,06,"Other Pesticides",8,TO,O,4.645,4.22272727272727,1.1,1.1
"Cotton, upland",1993,CALIFORNIA,06,"All Pesticides",8,TA,F,5.431,5.17238095238095,1.05,1.05
"Cotton, upland",1993,CALIFORNIA,06,Fungicides,8,TF,F,,,1.05,1.05
"Cotton, upland",1993,CALIFORNIA,06,Herbicides,8,TH,H,0.771,0.734285714285714,1.05,1.05
"Cotton, upland",1993,CALIFORNIA,06,Insecticides,8,TI,I,0.763,0.726666666666667,1.05,1.05
"Cotton, upland",1993,CALIFORNIA,06,"Other Pesticides",8,TO,O,3.897,3.71142857142857,1.05,1.05
"Cotton, upland",1992,CALIFORNIA,06,"All Pesticides",8,TA,F,6.108,6.108,1.0,1.0
"Cotton, upland",1992,CALIFORNIA,06,Fungicides,8,TF,F,,,1.0,1.0
"Cotton, upland",1992,CALIFORNIA,06,Herbicides,8,TH,H,0.889,0.889,1.0,1.0
"Cotton, upland",1992,CALIFORNIA,06,Insecticides,8,TI,I,0.668,0.668,1.0,1.0
"Cotton, upland",1992,CALIFORNIA,06,"Other Pesticides",8,TO,O,4.551,4.551,1.0,1.0
"Cotton, upland",1991,CALIFORNIA,06,"All Pesticides",8,TA,H,5.738,5.85510204081633,0.98,0.98
"Cotton, upland",1991,CALIFORNIA,06,Fungicides,8,TF,F,0.037,0.0377551020408163,0.98,0.98
"Cotton, upland",1991,CALIFORNIA,06,Herbicides,8,TH,H,0.939,0.958163265306122,0.98,0.98
"Cotton, upland",1991,CALIFORNIA,06,Insecticides,8,TI,I,0.622,0.63469387755102,0.98,0.98
"Cotton, upland",1991,CALIFORNIA,06,"Other Pesticides",8,TO,O,4.14,4.22448979591837,0.98,0.98
"Cotton, upland",2014,GEORGIA,13,"All Pesticides",8,TA,H,9.519,7.15714285714286,1.33,1.33
"Cotton, upland",2014,GEORGIA,13,Herbicides,8,TH,H,4.098,3.0812030075188,1.33,1.33
"Cotton, upland",2014,GEORGIA,13,Insecticides,8,TI,I,1.121,0.842857142857143,1.33,1.33
"Cotton, upland",2014,GEORGIA,13,"Other Pesticides",8,TO,O,4.3,3.23308270676692,1.33,1.33
"Cotton, upland",2013,GEORGIA,13,"All Pesticides",8,TA,H,9.519,7.15714285714286,1.33,1.33
"Cotton, upland",2013,GEORGIA,13,Herbicides,8,TH,H,4.098,3.0812030075188,1.33,1.33
"Cotton, upland",2013,GEORGIA,13,Insecticides,8,TI,I,1.121,0.842857142857143,1.33,1.33
"Cotton, upland",2013,GEORGIA,13,"Other Pesticides",8,TO,O,4.3,3.23308270676692,1.33,1.33
"Cotton, upland",2012,GEORGIA,13,"All Pesticides",8,TA,H,9.519,7.15714285714286,1.33,1.33
"Cotton, upland",2012,GEORGIA,13,Herbicides,8,TH,H,4.098,3.0812030075188,1.33,1.33
"Cotton, upland",2012,GEORGIA,13,Insecticides,8,TI,I,1.121,0.842857142857143,1.33,1.33
"Cotton, upland",2012,GEORGIA,13,"Other Pesticides",8,TO,O,4.3,3.23308270676692,1.33,1.33
"Cotton, upland",2011,GEORGIA,13,"All Pesticides",8,TA,H,9.519,7.15714285714286,1.33,1.33
"Cotton, upland",2011,GEORGIA,13,Herbicides,8,TH,H,4.098,3.0812030075188,1.33,1.33
"Cotton, upland",2011,GEORGIA,13,Insecticides,8,TI,I,1.121,0.842857142857143,1.33,1.33
"Cotton, upland",2011,GEORGIA,13,"Other Pesticides",8,TO,O,4.3,3.23308270676692,1.33,1.33
"Cotton, upland",2009,GEORGIA,13,"All Pesticides",8,TA,I,8.074,7.83883495145631,1.03,1.03
"Cotton, upland",2009,GEORGIA,13,Herbicides,8,TH,H,3.163,3.07087378640777,1.03,1.03
"Cotton, upland",2009,GEORGIA,13,Insecticides,8,TI,I,0.956,0.928155339805825,1.03,1.03
"Cotton, upland",2009,GEORGIA,13,"Other Pesticides",8,TO,O,3.955,3.83980582524272,1.03,1.03
"Cotton, upland",2008,GEORGIA,13,"All Pesticides",8,TA,I,8.074,7.83883495145631,1.03,1.03
"Cotton, upland",2008,GEORGIA,13,Herbicides,8,TH,H,3.163,3.07087378640777,1.03,1.03
"Cotton, upland",2008,GEORGIA,13,Insecticides,8,TI,I,0.956,0.928155339805825,1.03,1.03
"Cotton, upland",2008,GEORGIA,13,"Other Pesticides",8,TO,O,3.955,3.83980582524272,1.03,1.03
"Cotton, upland",2007,GEORGIA,13,"All Pesticides",8,TA,I,8.074,7.83883495145631,1.03,1.03
"Cotton, upland",2007,GEORGIA,13,Herbicides,8,TH,H,3.163,3.07087378640777,1.03,1.03
"Cotton, upland",2007,GEORGIA,13,Insecticides,8,TI,I,0.956,0.928155339805825,1.03,1.03
"Cotton, upland",2007,GEORGIA,13,"Other Pesticides",8,TO,O,3.955,3.83980582524272,1.03,1.03
"Cotton, upland",2006,GEORGIA,13,"All Pesticides",8,TA,I,6.642,5.44426229508197,1.22,1.22
"Cotton, upland",2006,GEORGIA,13,Herbicides,8,TH,H,2.958,2.42459016393443,1.22,1.22
"Cotton, upland",2006,GEORGIA,13,Insecticides,8,TI,I,1.145,0.938524590163934,1.22,1.22
"Cotton, upland",2006,GEORGIA,13,"Other Pesticides",8,TO,O,2.539,2.08114754098361,1.22,1.22
"Cotton, upland",2005,GEORGIA,13,"All Pesticides",8,TA,I,6.642,5.44426229508197,1.22,1.22
"Cotton, upland",2005,GEORGIA,13,Herbicides,8,TH,H,2.958,2.42459016393443,1.22,1.22
"Cotton, upland",2005,GEORGIA,13,Insecticides,8,TI,I,1.145,0.938524590163934,1.22,1.22
"Cotton, upland",2005,GEORGIA,13,"Other Pesticides",8,TO,O,2.539,2.08114754098361,1.22,1.22
"Cotton, upland",2004,GEORGIA,13,"All Pesticides",8,TA,I,6.492,4.99384615384615,1.3,1.3
"Cotton, upland",2004,GEORGIA,13,Fungicides,8,TF,F,0.043,0.0330769230769231,1.3,1.3
"Cotton, upland",2004,GEORGIA,13,Herbicides,8,TH,H,2.994,2.30307692307692,1.3,1.3
"Cotton, upland",2004,GEORGIA,13,Insecticides,8,TI,I,0.746,0.573846153846154,1.3,1.3
"Cotton, upland",2004,GEORGIA,13,"Other Pesticides",8,TO,O,2.709,2.08384615384615,1.3,1.3
"Cotton, upland",2003,GEORGIA,13,"All Pesticides",8,TA,I,6.492,4.99384615384615,1.3,1.3
"Cotton, upland",2003,GEORGIA,13,Fungicides,8,TF,F,0.043,0.0330769230769231,1.3,1.3
"Cotton, upland",2003,GEORGIA,13,Herbicides,8,TH,H,2.994,2.30307692307692,1.3,1.3
"Cotton, upland",2003,GEORGIA,13,Insecticides,8,TI,I,0.746,0.573846153846154,1.3,1.3
"Cotton, upland",2003,GEORGIA,13,"Other Pesticides",8,TO,O,2.709,2.08384615384615,1.3,1.3
"Cotton, upland",2002,GEORGIA,13,"All Pesticides",8,TA,H,5.229,3.50939597315436,1.49,1.49
"Cotton, upland",2002,GEORGIA,13,Fungicides,8,TF,F,0.003,0.00204081632653061,1.47,1.47
"Cotton, upland",2002,GEORGIA,13,Herbicides,8,TH,H,2.958,1.98523489932886,1.49,1.49
"Cotton, upland",2002,GEORGIA,13,Insecticides,8,TI,I,0.366,0.245637583892617,1.49,1.49
"Cotton, upland",2002,GEORGIA,13,"Other Pesticides",8,TO,O,1.902,1.27651006711409,1.49,1.49
"Cotton, upland",2001,GEORGIA,13,"All Pesticides",8,TA,H,5.229,3.50939597315436,1.49,1.49
"Cotton, upland",2001,GEORGIA,13,Fungicides,8,TF,F,0.003,0.00204081632653061,1.47,1.47
"Cotton, upland",2001,GEORGIA,13,Herbicides,8,TH,H,2.958,1.98523489932886,1.49,1.49
"Cotton, upland",2001,GEORGIA,13,Insecticides,8,TI,I,0.366,0.245637583892617,1.49,1.49
"Cotton, upland",2001,GEORGIA,13,"Other Pesticides",8,TO,O,1.902,1.27651006711409,1.49,1.49
"Cotton, upland",2000,GEORGIA,13,"All Pesticides",8,TA,H,7.512,5.008,1.5,1.5
"Cotton, upland",2000,GEORGIA,13,Fungicides,8,TF,F,0.003,0.00204081632653061,1.47,1.47
"Cotton, upland",2000,GEORGIA,13,Herbicides,8,TH,H,3.526,2.35066666666667,1.5,1.5
"Cotton, upland",2000,GEORGIA,13,Insecticides,8,TI,I,0.725,0.483333333333333,1.5,1.5
"Cotton, upland",2000,GEORGIA,13,"Other Pesticides",8,TO,O,3.258,2.172,1.5,1.5
"Cotton, upland",1999,GEORGIA,13,"All Pesticides",8,TA,O,8.06,5.48299319727891,1.47,1.47
"Cotton, upland",1999,GEORGIA,13,Fungicides,8,TF,F,0.003,0.00204081632653061,1.47,1.47
"Cotton, upland",1999,GEORGIA,13,Herbicides,8,TH,H,4.249,2.89047619047619,1.47,1.47
"Cotton, upland",1999,GEORGIA,13,Insecticides,8,TI,I,0.816,0.555102040816327,1.47,1.47
"Cotton, upland",1999,GEORGIA,13,"Other Pesticides",8,TO,O,2.992,2.03537414965986,1.47,1.47
"Cotton, upland",1998,GEORGIA,13,"All Pesticides",8,TA,O,6.82,4.97810218978102,1.37,1.37
"Cotton, upland",1998,GEORGIA,13,Herbicides,8,TH,H,3.629,2.64890510948905,1.37,1.37
"Cotton, upland",1998,GEORGIA,13,Insecticides,8,TI,I,0.869,0.634306569343066,1.37,1.37
"Cotton, upland",1998,GEORGIA,13,"Other Pesticides",8,TO,O,2.322,1.6948905109489,1.37,1.37
"Cotton, upland",1997,GEORGIA,13,"All Pesticides",8,TA,I,9.915,6.88541666666667,1.44,1.44
"Cotton, upland",1997,GEORGIA,13,Herbicides,8,TH,H,4.623,3.21041666666667,1.44,1.44
"Cotton, upland",1997,GEORGIA,13,Insecticides,8,TI,I,0.895,0.621527777777778,1.44,1.44
"Cotton, upland",1997,GEORGIA,13,"Other Pesticides",8,TO,O,4.397,3.05347222222222,1.44,1.44
"Cotton, upland",1996,GEORGIA,13,"All Pesticides",8,TA,I,5.946,4.43731343283582,1.34,1.34
"Cotton, upland",1996,GEORGIA,13,Herbicides,8,TH,H,4.079,3.04402985074627,1.34,1.34
"Cotton, upland",1996,GEORGIA,13,Insecticides,8,TI,I,0.633,0.472388059701493,1.34,1.34
"Cotton, upland",1996,GEORGIA,13,"Other Pesticides",8,TO,O,1.234,0.92089552238806,1.34,1.34
"Cotton, upland",2014,LOUISIANA,22,"All Pesticides",8,TA,H,2.121,6.33134328358209,0.335,0.335
"Cotton, upland",2014,LOUISIANA,22,Herbicides,8,TH,H,0.992,2.96119402985075,0.335,0.335
"Cotton, upland",2014,LOUISIANA,22,Insecticides,8,TI,I,0.562,1.67761194029851,0.335,0.335
"Cotton, upland",2014,LOUISIANA,22,"Other Pesticides",8,TO,O,0.567,1.69253731343284,0.335,0.335
"Cotton, upland",2013,LOUISIANA,22,"All Pesticides",8,TA,H,2.121,6.33134328358209,0.335,0.335
"Cotton, upland",2013,LOUISIANA,22,Herbicides,8,TH,H,0.992,2.96119402985075,0.335,0.335
"Cotton, upland",2013,LOUISIANA,22,Insecticides,8,TI,I,0.562,1.67761194029851,0.335,0.335
"Cotton, upland",2013,LOUISIANA,22,"Other Pesticides",8,TO,O,0.567,1.69253731343284,0.335,0.335
"Cotton, upland",2012,LOUISIANA,22,"All Pesticides",8,TA,H,2.121,6.33134328358209,0.335,0.335
"Cotton, upland",2012,LOUISIANA,22,Herbicides,8,TH,H,0.992,2.96119402985075,0.335,0.335
"Cotton, upland",2012,LOUISIANA,22,Insecticides,8,TI,I,0.562,1.67761194029851,0.335,0.335
"Cotton, upland",2012,LOUISIANA,22,"Other Pesticides",8,TO,O,0.567,1.69253731343284,0.335,0.335
"Cotton, upland",2011,LOUISIANA,22,"All Pesticides",8,TA,H,2.121,6.33134328358209,0.335,0.335
"Cotton, upland",2011,LOUISIANA,22,Herbicides,8,TH,H,0.992,2.96119402985075,0.335,0.335
"Cotton, upland",2011,LOUISIANA,22,Insecticides,8,TI,I,0.562,1.67761194029851,0.335,0.335
"Cotton, upland",2011,LOUISIANA,22,"Other Pesticides",8,TO,O,0.567,1.69253731343284,0.335,0.335
"Cotton, upland",2010,LOUISIANA,22,"All Pesticides",8,TA,H,2.121,6.33134328358209,0.335,0.335
"Cotton, upland",2010,LOUISIANA,22,Herbicides,8,TH,H,0.992,2.96119402985075,0.335,0.335
"Cotton, upland",2010,LOUISIANA,22,Insecticides,8,TI,I,0.562,1.67761194029851,0.335,0.335
"Cotton, upland",2010,LOUISIANA,22,"Other Pesticides",8,TO,O,0.567,1.69253731343284,0.335,0.335
"Cotton, upland",2009,LOUISIANA,22,"All Pesticides",8,TA,H,2.121,6.33134328358209,0.335,0.335
"Cotton, upland",2009,LOUISIANA,22,Herbicides,8,TH,H,0.992,2.96119402985075,0.335,0.335
"Cotton, upland",2009,LOUISIANA,22,Insecticides,8,TI,I,0.562,1.67761194029851,0.335,0.335
"Cotton, upland",2009,LOUISIANA,22,"Other Pesticides",8,TO,O,0.567,1.69253731343284,0.335,0.335
"Cotton, upland",2008,LOUISIANA,22,"All Pesticides",8,TA,H,2.121,6.33134328358209,0.335,0.335
"Cotton, upland",2008,LOUISIANA,22,Herbicides,8,TH,H,0.992,2.96119402985075,0.335,0.335
"Cotton, upland",2008,LOUISIANA,22,Insecticides,8,TI,I,0.562,1.67761194029851,0.335,0.335
"Cotton, upland",2008,LOUISIANA,22,"Other Pesticides",8,TO,O,0.567,1.69253731343284,0.335,0.335
"Cotton, upland",2006,LOUISIANA,22,"All Pesticides",8,TA,I,4.143,6.79180327868853,0.61,0.61
"Cotton, upland",2006,LOUISIANA,22,Herbicides,8,TH,H,1.897,3.10983606557377,0.61,0.61
"Cotton, upland",2006,LOUISIANA,22,Insecticides,8,TI,I,1.358,2.22622950819672,0.61,0.61
"Cotton, upland",2006,LOUISIANA,22,"Other Pesticides",8,TO,O,0.888,1.45573770491803,0.61,0.61
"Cotton, upland",2005,LOUISIANA,22,"All Pesticides",8,TA,I,4.143,6.79180327868853,0.61,0.61
"Cotton, upland",2005,LOUISIANA,22,Herbicides,8,TH,H,1.897,3.10983606557377,0.61,0.61
"Cotton, upland",2005,LOUISIANA,22,Insecticides,8,TI,I,1.358,2.22622950819672,0.61,0.61
"Cotton, upland",2005,LOUISIANA,22,"Other Pesticides",8,TO,O,0.888,1.45573770491803,0.61,0.61
"Cotton, upland",2004,LOUISIANA,22,"All Pesticides",8,TA,H,4.156,7.91619047619048,0.525,0.525
"Cotton, upland",2004,LOUISIANA,22,Fungicides,8,TF,F,0.011,0.020952380952381,0.525,0.525
"Cotton, upland",2004,LOUISIANA,22,Herbicides,8,TH,H,1.448,2.75809523809524,0.525,0.525
"Cotton, upland",2004,LOUISIANA,22,Insecticides,8,TI,I,2.007,3.82285714285714,0.525,0.525
"Cotton, upland",2004,LOUISIANA,22,"Other Pesticides",8,TO,O,0.69,1.31428571428571,0.525,0.525
"Cotton, upland",2003,LOUISIANA,22,"All Pesticides",8,TA,H,4.156,7.91619047619048,0.525,0.525
"Cotton, upland",2003,LOUISIANA,22,Fungicides,8,TF,F,0.011,0.020952380952381,0.525,0.525
"Cotton, upland",2003,LOUISIANA,22,Herbicides,8,TH,H,1.448,2.75809523809524,0.525,0.525
"Cotton, upland",2003,LOUISIANA,22,Insecticides,8,TI,I,2.007,3.82285714285714,0.525,0.525
"Cotton, upland",2003,LOUISIANA,22,"Other Pesticides",8,TO,O,0.69,1.31428571428571,0.525,0.525
"Cotton, upland",2002,LOUISIANA,22,"All Pesticides",8,TA,I,5.77,6.63218390804598,0.87,0.87
"Cotton, upland",2002,LOUISIANA,22,Fungicides,8,TF,F,0.07,0.0804597701149425,0.87,0.87
"Cotton, upland",2002,LOUISIANA,22,Herbicides,8,TH,H,2.552,2.93333333333333,0.87,0.87
"Cotton, upland",2002,LOUISIANA,22,Insecticides,8,TI,I,2.217,2.54827586206897,0.87,0.87
"Cotton, upland",2002,LOUISIANA,22,"Other Pesticides",8,TO,O,0.931,1.07011494252874,0.87,0.87
"Cotton, upland",2001,LOUISIANA,22,"All Pesticides",8,TA,I,5.77,6.63218390804598,0.87,0.87
"Cotton, upland",2001,LOUISIANA,22,Fungicides,8,TF,F,0.07,0.0804597701149425,0.87,0.87
"Cotton, upland",2001,LOUISIANA,22,Herbicides,8,TH,H,2.552,2.93333333333333,0.87,0.87
"Cotton, upland",2001,LOUISIANA,22,Insecticides,8,TI,I,2.217,2.54827586206897,0.87,0.87
"Cotton, upland",2001,LOUISIANA,22,"Other Pesticides",8,TO,O,0.931,1.07011494252874,0.87,0.87
"Cotton, upland",2000,LOUISIANA,22,"All Pesticides",8,TA,H,7.598,10.7014084507042,0.71,0.71
"Cotton, upland",2000,LOUISIANA,22,Fungicides,8,TF,F,0.229,0.322535211267606,0.71,0.71
"Cotton, upland",2000,LOUISIANA,22,Herbicides,8,TH,H,1.825,2.57042253521127,0.71,0.71
"Cotton, upland",2000,LOUISIANA,22,Insecticides,8,TI,I,4.795,6.75352112676056,0.71,0.71
"Cotton, upland",2000,LOUISIANA,22,"Other Pesticides",8,TO,O,0.749,1.05492957746479,0.71,0.71
"Cotton, upland",1999,LOUISIANA,22,"All Pesticides",8,TA,F,6.716,10.920325203252,0.615,0.615
"Cotton, upland",1999,LOUISIANA,22,Fungicides,8,TF,F,0.04,0.0650406504065041,0.615,0.615
"Cotton, upland",1999,LOUISIANA,22,Herbicides,8,TH,H,1.763,2.86666666666667,0.615,0.615
"Cotton, upland",1999,LOUISIANA,22,Insecticides,8,TI,I,4.206,6.8390243902439,0.615,0.615
"Cotton, upland",1999,LOUISIANA,22,"Other Pesticides",8,TO,O,0.707,1.14959349593496,0.615,0.615
"Cotton, upland",1998,LOUISIANA,22,"All Pesticides",8,TA,F,4.615,8.62616822429906,0.535,0.535
"Cotton, upland",1998,LOUISIANA,22,Fungicides,8,TF,F,0.076,0.142056074766355,0.535,0.535
"Cotton, upland",1998,LOUISIANA,22,Herbicides,8,TH,H,1.655,3.09345794392523,0.535,0.535
"Cotton, upland",1998,LOUISIANA,22,Insecticides,8,TI,I,2.385,4.45794392523364,0.535,0.535
"Cotton, upland",1998,LOUISIANA,22,"Other Pesticides",8,TO,O,0.499,0.932710280373832,0.535,0.535
"Cotton, upland",1997,LOUISIANA,22,"All Pesticides",8,TA,H,4.674,7.13587786259542,0.655,0.655
"Cotton, upland",1997,LOUISIANA,22,Fungicides,8,TF,F,0.085,0.129770992366412,0.655,0.655
"Cotton, upland",1997,LOUISIANA,22,Herbicides,8,TH,H,2.331,3.5587786259542,0.655,0.655
"Cotton, upland",1997,LOUISIANA,22,Insecticides,8,TI,I,1.789,2.73129770992366,0.655,0.655
"Cotton, upland",1997,LOUISIANA,22,"Other Pesticides",8,TO,O,0.469,0.716030534351145,0.655,0.655
"Cotton, upland",1996,LOUISIANA,22,"All Pesticides",8,TA,F,4.078,4.58202247191011,0.89,0.89
"Cotton, upland",1996,LOUISIANA,22,Fungicides,8,TF,F,0.089,0.1,0.89,0.89
"Cotton, upland",1996,LOUISIANA,22,Herbicides,8,TH,H,1.957,2.19887640449438,0.89,0.89
"Cotton, upland",1996,LOUISIANA,22,Insecticides,8,TI,I,1.486,1.66966292134831,0.89,0.89
"Cotton, upland",1996,LOUISIANA,22,"Other Pesticides",8,TO,O,0.546,0.613483146067416,0.89,0.89
"Cotton, upland",1995,LOUISIANA,22,"All Pesticides",8,TA,O,6.399,5.89769585253456,1.085,1.085
"Cotton, upland",1995,LOUISIANA,22,Fungicides,8,TF,F,0.071,0.0654377880184332,1.085,1.085
"Cotton, upland",1995,LOUISIANA,22,Herbicides,8,TH,H,2.4,2.21198156682028,1.085,1.085
"Cotton, upland",1995,LOUISIANA,22,Insecticides,8,TI,I,3.176,2.92718894009217,1.085,1.085
"Cotton, upland",1995,LOUISIANA,22,"Other Pesticides",8,TO,O,0.752,0.693087557603687,1.085,1.085
"Cotton, upland",1994,LOUISIANA,22,"All Pesticides",8,TA,I,7.541,8.37888888888889,0.9,0.9
"Cotton, upland",1994,LOUISIANA,22,Fungicides,8,TF,F,0.084,0.0933333333333333,0.9,0.9
"Cotton, upland",1994,LOUISIANA,22,Herbicides,8,TH,H,2.996,3.32888888888889,0.9,0.9
"Cotton, upland",1994,LOUISIANA,22,Insecticides,8,TI,I,3.737,4.15222222222222,0.9,0.9
"Cotton, upland",1994,LOUISIANA,22,"Other Pesticides",8,TO,O,0.724,0.804444444444444,0.9,0.9
"Cotton, upland",1993,LOUISIANA,22,"All Pesticides",8,TA,I,4.683,5.26179775280899,0.89,0.89
"Cotton, upland",1993,LOUISIANA,22,Fungicides,8,TF,F,0.155,0.174157303370787,0.89,0.89
"Cotton, upland",1993,LOUISIANA,22,Herbicides,8,TH,H,2.18,2.44943820224719,0.89,0.89
"Cotton, upland",1993,LOUISIANA,22,Insecticides,8,TI,I,1.763,1.98089887640449,0.89,0.89
"Cotton, upland",1993,LOUISIANA,22,"Other Pesticides",8,TO,O,0.585,0.657303370786517,0.89,0.89
"Cotton, upland",1992,LOUISIANA,22,"All Pesticides",8,TA,I,4.987,5.60337078651685,0.89,0.89
"Cotton, upland",1992,LOUISIANA,22,Fungicides,8,TF,F,0.191,0.214606741573034,0.89,0.89
"Cotton, upland",1992,LOUISIANA,22,Herbicides,8,TH,H,3.277,3.68202247191011,0.89,0.89
"Cotton, upland",1992,LOUISIANA,22,Insecticides,8,TI,I,0.917,1.03033707865169,0.89,0.89
"Cotton, upland",1992,LOUISIANA,22,"Other Pesticides",8,TO,O,0.602,0.676404494382022,0.89,0.89
"Cotton, upland",1991,LOUISIANA,22,"All Pesticides",8,TA,O,4.323,4.94057142857143,0.875,0.875
"Cotton, upland",1991,LOUISIANA,22,Fungicides,8,TF,F,0.282,0.322285714285714,0.875,0.875
"Cotton, upland",1991,LOUISIANA,22,Herbicides,8,TH,H,2.969,3.39314285714286,0.875,0.875
"Cotton, upland",1991,LOUISIANA,22,Insecticides,8,TI,I,0.375,0.428571428571429,0.875,0.875
"Cotton, upland",1991,LOUISIANA,22,"Other Pesticides",8,TO,O,0.697,0.796571428571428,0.875,0.875
"Cotton, upland",2014,MISSISSIPPI,28,"All Pesticides",8,TA,O,2.944,7.00952380952381,0.42,0.42
"Cotton, upland",2014,MISSISSIPPI,28,Herbicides,8,TH,H,1.457,3.46904761904762,0.42,0.42
"Cotton, upland",2014,MISSISSIPPI,28,Insecticides,8,TI,I,0.634,1.50952380952381,0.42,0.42
"Cotton, upland",2014,MISSISSIPPI,28,"Other Pesticides",8,TO,O,0.853,2.03095238095238,0.42,0.42
"Cotton, upland",2013,MISSISSIPPI,28,"All Pesticides",8,TA,O,2.944,7.00952380952381,0.42,0.42
"Cotton, upland",2013,MISSISSIPPI,28,Herbicides,8,TH,H,1.457,3.46904761904762,0.42,0.42
"Cotton, upland",2013,MISSISSIPPI,28,Insecticides,8,TI,I,0.634,1.50952380952381,0.42,0.42
"Cotton, upland",2013,MISSISSIPPI,28,"Other Pesticides",8,TO,O,0.853,2.03095238095238,0.42,0.42
"Cotton, upland",2012,MISSISSIPPI,28,"All Pesticides",8,TA,O,2.944,7.00952380952381,0.42,0.42
"Cotton, upland",2012,MISSISSIPPI,28,Herbicides,8,TH,H,1.457,3.46904761904762,0.42,0.42
"Cotton, upland",2012,MISSISSIPPI,28,Insecticides,8,TI,I,0.634,1.50952380952381,0.42,0.42
"Cotton, upland",2012,MISSISSIPPI,28,"Other Pesticides",8,TO,O,0.853,2.03095238095238,0.42,0.42
"Cotton, upland",2011,MISSISSIPPI,28,"All Pesticides",8,TA,O,2.944,7.00952380952381,0.42,0.42
"Cotton, upland",2011,MISSISSIPPI,28,Herbicides,8,TH,H,1.457,3.46904761904762,0.42,0.42
"Cotton, upland",2011,MISSISSIPPI,28,Insecticides,8,TI,I,0.634,1.50952380952381,0.42,0.42
"Cotton, upland",2011,MISSISSIPPI,28,"Other Pesticides",8,TO,O,0.853,2.03095238095238,0.42,0.42
"Cotton, upland",2009,MISSISSIPPI,28,"All Pesticides",8,TA,H,4.509,6.83181818181818,0.66,0.66
"Cotton, upland",2009,MISSISSIPPI,28,Herbicides,8,TH,H,2.132,3.23030303030303,0.66,0.66
"Cotton, upland",2009,MISSISSIPPI,28,Insecticides,8,TI,I,1.231,1.86515151515152,0.66,0.66
"Cotton, upland",2009,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.146,1.73636363636364,0.66,0.66
"Cotton, upland",2008,MISSISSIPPI,28,"All Pesticides",8,TA,H,4.509,6.83181818181818,0.66,0.66
"Cotton, upland",2008,MISSISSIPPI,28,Herbicides,8,TH,H,2.132,3.23030303030303,0.66,0.66
"Cotton, upland",2008,MISSISSIPPI,28,Insecticides,8,TI,I,1.231,1.86515151515152,0.66,0.66
"Cotton, upland",2008,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.146,1.73636363636364,0.66,0.66
"Cotton, upland",2007,MISSISSIPPI,28,"All Pesticides",8,TA,H,4.509,6.83181818181818,0.66,0.66
"Cotton, upland",2007,MISSISSIPPI,28,Herbicides,8,TH,H,2.132,3.23030303030303,0.66,0.66
"Cotton, upland",2007,MISSISSIPPI,28,Insecticides,8,TI,I,1.231,1.86515151515152,0.66,0.66
"Cotton, upland",2007,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.146,1.73636363636364,0.66,0.66
"Cotton, upland",2006,MISSISSIPPI,28,"All Pesticides",8,TA,H,7.772,6.42314049586777,1.21,1.21
"Cotton, upland",2006,MISSISSIPPI,28,Fungicides,8,TF,F,0.028,0.0231404958677686,1.21,1.21
"Cotton, upland",2006,MISSISSIPPI,28,Herbicides,8,TH,H,3.947,3.26198347107438,1.21,1.21
"Cotton, upland",2006,MISSISSIPPI,28,Insecticides,8,TI,I,1.917,1.58429752066116,1.21,1.21
"Cotton, upland",2006,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.88,1.55371900826446,1.21,1.21
"Cotton, upland",2005,MISSISSIPPI,28,"All Pesticides",8,TA,H,7.772,6.42314049586777,1.21,1.21
"Cotton, upland",2005,MISSISSIPPI,28,Fungicides,8,TF,F,0.028,0.0231404958677686,1.21,1.21
"Cotton, upland",2005,MISSISSIPPI,28,Herbicides,8,TH,H,3.947,3.26198347107438,1.21,1.21
"Cotton, upland",2005,MISSISSIPPI,28,Insecticides,8,TI,I,1.917,1.58429752066116,1.21,1.21
"Cotton, upland",2005,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.88,1.55371900826446,1.21,1.21
"Cotton, upland",2004,MISSISSIPPI,28,"All Pesticides",8,TA,O,6.662,6.0018018018018,1.11,1.11
"Cotton, upland",2004,MISSISSIPPI,28,Fungicides,8,TF,F,0.063,0.0567567567567568,1.11,1.11
"Cotton, upland",2004,MISSISSIPPI,28,Herbicides,8,TH,H,3.475,3.13063063063063,1.11,1.11
"Cotton, upland",2004,MISSISSIPPI,28,Insecticides,8,TI,I,1.534,1.38198198198198,1.11,1.11
"Cotton, upland",2004,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.59,1.43243243243243,1.11,1.11
"Cotton, upland",2003,MISSISSIPPI,28,"All Pesticides",8,TA,O,6.662,6.0018018018018,1.11,1.11
"Cotton, upland",2003,MISSISSIPPI,28,Fungicides,8,TF,F,0.063,0.0567567567567568,1.11,1.11
"Cotton, upland",2003,MISSISSIPPI,28,Herbicides,8,TH,H,3.475,3.13063063063063,1.11,1.11
"Cotton, upland",2003,MISSISSIPPI,28,Insecticides,8,TI,I,1.534,1.38198198198198,1.11,1.11
"Cotton, upland",2003,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.59,1.43243243243243,1.11,1.11
"Cotton, upland",2002,MISSISSIPPI,28,"All Pesticides",8,TA,I,9.702,5.98888888888889,1.62,1.62
"Cotton, upland",2002,MISSISSIPPI,28,Fungicides,8,TF,F,0.022,0.0135802469135802,1.62,1.62
"Cotton, upland",2002,MISSISSIPPI,28,Herbicides,8,TH,H,3.913,2.41543209876543,1.62,1.62
"Cotton, upland",2002,MISSISSIPPI,28,Insecticides,8,TI,I,3.306,2.04074074074074,1.62,1.62
"Cotton, upland",2002,MISSISSIPPI,28,"Other Pesticides",8,TO,O,2.461,1.51913580246914,1.62,1.62
"Cotton, upland",2001,MISSISSIPPI,28,"All Pesticides",8,TA,I,9.702,5.98888888888889,1.62,1.62
"Cotton, upland",2001,MISSISSIPPI,28,Fungicides,8,TF,F,0.022,0.0135802469135802,1.62,1.62
"Cotton, upland",2001,MISSISSIPPI,28,Herbicides,8,TH,H,3.913,2.41543209876543,1.62,1.62
"Cotton, upland",2001,MISSISSIPPI,28,Insecticides,8,TI,I,3.306,2.04074074074074,1.62,1.62
"Cotton, upland",2001,MISSISSIPPI,28,"Other Pesticides",8,TO,O,2.461,1.51913580246914,1.62,1.62
"Cotton, upland",2000,MISSISSIPPI,28,"All Pesticides",8,TA,I,11.786,9.06615384615385,1.3,1.3
"Cotton, upland",2000,MISSISSIPPI,28,Fungicides,8,TF,F,0.131,0.100769230769231,1.3,1.3
"Cotton, upland",2000,MISSISSIPPI,28,Herbicides,8,TH,H,3.557,2.73615384615385,1.3,1.3
"Cotton, upland",2000,MISSISSIPPI,28,Insecticides,8,TI,I,6.112,4.70153846153846,1.3,1.3
"Cotton, upland",2000,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.986,1.52769230769231,1.3,1.3
"Cotton, upland",1999,MISSISSIPPI,28,"All Pesticides",8,TA,O,12.561,10.4675,1.2,1.2
"Cotton, upland",1999,MISSISSIPPI,28,Fungicides,8,TF,F,0.18,0.15,1.2,1.2
"Cotton, upland",1999,MISSISSIPPI,28,Herbicides,8,TH,H,3.821,3.18416666666667,1.2,1.2
"Cotton, upland",1999,MISSISSIPPI,28,Insecticides,8,TI,I,6.58,5.48333333333333,1.2,1.2
"Cotton, upland",1999,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.98,1.65,1.2,1.2
"Cotton, upland",1998,MISSISSIPPI,28,"All Pesticides",8,TA,O,8.563,9.01368421052632,0.95,0.95
"Cotton, upland",1998,MISSISSIPPI,28,Fungicides,8,TF,F,0.115,0.121052631578947,0.95,0.95
"Cotton, upland",1998,MISSISSIPPI,28,Herbicides,8,TH,H,2.588,2.72421052631579,0.95,0.95
"Cotton, upland",1998,MISSISSIPPI,28,Insecticides,8,TI,I,4.757,5.00736842105263,0.95,0.95
"Cotton, upland",1998,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.103,1.16105263157895,0.95,0.95
"Cotton, upland",1997,MISSISSIPPI,28,"All Pesticides",8,TA,O,9.099,9.23756345177665,0.985,0.985
"Cotton, upland",1997,MISSISSIPPI,28,Fungicides,8,TF,F,0.447,0.453807106598985,0.985,0.985
"Cotton, upland",1997,MISSISSIPPI,28,Herbicides,8,TH,H,3.124,3.17157360406091,0.985,0.985
"Cotton, upland",1997,MISSISSIPPI,28,Insecticides,8,TI,I,3.972,4.03248730964467,0.985,0.985
"Cotton, upland",1997,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.556,1.57969543147208,0.985,0.985
"Cotton, upland",1996,MISSISSIPPI,28,"All Pesticides",8,TA,O,8.984,8.02142857142857,1.12,1.12
"Cotton, upland",1996,MISSISSIPPI,28,Fungicides,8,TF,F,0.045,0.0401785714285714,1.12,1.12
"Cotton, upland",1996,MISSISSIPPI,28,Herbicides,8,TH,H,3.981,3.55446428571429,1.12,1.12
"Cotton, upland",1996,MISSISSIPPI,28,Insecticides,8,TI,I,2.417,2.15803571428571,1.12,1.12
"Cotton, upland",1996,MISSISSIPPI,28,"Other Pesticides",8,TO,O,2.541,2.26875,1.12,1.12
"Cotton, upland",1995,MISSISSIPPI,28,"All Pesticides",8,TA,I,14.226,9.74383561643836,1.46,1.46
"Cotton, upland",1995,MISSISSIPPI,28,Fungicides,8,TF,F,0.35,0.23972602739726,1.46,1.46
"Cotton, upland",1995,MISSISSIPPI,28,Herbicides,8,TH,H,6.234,4.26986301369863,1.46,1.46
"Cotton, upland",1995,MISSISSIPPI,28,Insecticides,8,TI,I,5.691,3.89794520547945,1.46,1.46
"Cotton, upland",1995,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.951,1.33630136986301,1.46,1.46
"Cotton, upland",1994,MISSISSIPPI,28,"All Pesticides",8,TA,F,12.873,10.05703125,1.28,1.28
"Cotton, upland",1994,MISSISSIPPI,28,Fungicides,8,TF,F,0.452,0.353125,1.28,1.28
"Cotton, upland",1994,MISSISSIPPI,28,Herbicides,8,TH,H,5.385,4.20703125,1.28,1.28
"Cotton, upland",1994,MISSISSIPPI,28,Insecticides,8,TI,I,5.217,4.07578125,1.28,1.28
"Cotton, upland",1994,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.819,1.42109375,1.28,1.28
"Cotton, upland",1993,MISSISSIPPI,28,"All Pesticides",8,TA,O,11.786,8.86165413533834,1.33,1.33
"Cotton, upland",1993,MISSISSIPPI,28,Fungicides,8,TF,F,0.218,0.16390977443609,1.33,1.33
"Cotton, upland",1993,MISSISSIPPI,28,Herbicides,8,TH,H,5.326,4.00451127819549,1.33,1.33
"Cotton, upland",1993,MISSISSIPPI,28,Insecticides,8,TI,I,5.025,3.7781954887218,1.33,1.33
"Cotton, upland",1993,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.217,0.915037593984962,1.33,1.33
"Cotton, upland",1992,MISSISSIPPI,28,"All Pesticides",8,TA,O,11.785,8.72962962962963,1.35,1.35
"Cotton, upland",1992,MISSISSIPPI,28,Fungicides,8,TF,F,0.14,0.103703703703704,1.35,1.35
"Cotton, upland",1992,MISSISSIPPI,28,Herbicides,8,TH,H,5.516,4.08592592592593,1.35,1.35
"Cotton, upland",1992,MISSISSIPPI,28,Insecticides,8,TI,I,4.96,3.67407407407407,1.35,1.35
"Cotton, upland",1992,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.169,0.865925925925926,1.35,1.35
"Cotton, upland",1991,MISSISSIPPI,28,"All Pesticides",8,TA,F,8.846,7.10522088353414,1.245,1.245
"Cotton, upland",1991,MISSISSIPPI,28,Fungicides,8,TF,F,0.062,0.0497991967871486,1.245,1.245
"Cotton, upland",1991,MISSISSIPPI,28,Herbicides,8,TH,H,5.735,4.60642570281124,1.245,1.245
"Cotton, upland",1991,MISSISSIPPI,28,Insecticides,8,TI,I,1.08,0.867469879518072,1.245,1.245
"Cotton, upland",1991,MISSISSIPPI,28,"Other Pesticides",8,TO,O,1.969,1.58152610441767,1.245,1.245
"Cotton, upland",2014,MISSOURI,29,"All Pesticides",8,TA,H,2.026,6.53548387096774,0.31,0.31
"Cotton, upland",2014,MISSOURI,29,Herbicides,8,TH,H,1.191,3.84193548387097,0.31,0.31
"Cotton, upland",2014,MISSOURI,29,Insecticides,8,TI,I,0.279,0.9,0.31,0.31
"Cotton, upland",2014,MISSOURI,29,"Other Pesticides",8,TO,O,0.556,1.79354838709677,0.31,0.31
"Cotton, upland",2013,MISSOURI,29,"All Pesticides",8,TA,H,2.026,6.53548387096774,0.31,0.31
"Cotton, upland",2013,MISSOURI,29,Herbicides,8,TH,H,1.191,3.84193548387097,0.31,0.31
"Cotton, upland",2013,MISSOURI,29,Insecticides,8,TI,I,0.279,0.9,0.31,0.31
"Cotton, upland",2013,MISSOURI,29,"Other Pesticides",8,TO,O,0.556,1.79354838709677,0.31,0.31
"Cotton, upland",2012,MISSOURI,29,"All Pesticides",8,TA,H,2.026,6.53548387096774,0.31,0.31
"Cotton, upland",2012,MISSOURI,29,Herbicides,8,TH,H,1.191,3.84193548387097,0.31,0.31
"Cotton, upland",2012,MISSOURI,29,Insecticides,8,TI,I,0.279,0.9,0.31,0.31
"Cotton, upland",2012,MISSOURI,29,"Other Pesticides",8,TO,O,0.556,1.79354838709677,0.31,0.31
"Cotton, upland",2011,MISSOURI,29,"All Pesticides",8,TA,H,2.026,6.53548387096774,0.31,0.31
"Cotton, upland",2011,MISSOURI,29,Herbicides,8,TH,H,1.191,3.84193548387097,0.31,0.31
"Cotton, upland",2011,MISSOURI,29,Insecticides,8,TI,I,0.279,0.9,0.31,0.31
"Cotton, upland",2011,MISSOURI,29,"Other Pesticides",8,TO,O,0.556,1.79354838709677,0.31,0.31
"Cotton, upland",2009,MISSOURI,29,"All Pesticides",8,TA,H,2.132,5.61052631578947,0.38,0.38
"Cotton, upland",2009,MISSOURI,29,Herbicides,8,TH,H,0.995,2.61842105263158,0.38,0.38
"Cotton, upland",2009,MISSOURI,29,Insecticides,8,TI,I,0.27,0.710526315789474,0.38,0.38
"Cotton, upland",2009,MISSOURI,29,"Other Pesticides",8,TO,O,0.867,2.28157894736842,0.38,0.38
"Cotton, upland",2008,MISSOURI,29,"All Pesticides",8,TA,H,2.132,5.61052631578947,0.38,0.38
"Cotton, upland",2008,MISSOURI,29,Herbicides,8,TH,H,0.995,2.61842105263158,0.38,0.38
"Cotton, upland",2008,MISSOURI,29,Insecticides,8,TI,I,0.27,0.710526315789474,0.38,0.38
"Cotton, upland",2008,MISSOURI,29,"Other Pesticides",8,TO,O,0.867,2.28157894736842,0.38,0.38
"Cotton, upland",2007,MISSOURI,29,"All Pesticides",8,TA,H,2.132,5.61052631578947,0.38,0.38
"Cotton, upland",2007,MISSOURI,29,Herbicides,8,TH,H,0.995,2.61842105263158,0.38,0.38
"Cotton, upland",2007,MISSOURI,29,Insecticides,8,TI,I,0.27,0.710526315789474,0.38,0.38
"Cotton, upland",2007,MISSOURI,29,"Other Pesticides",8,TO,O,0.867,2.28157894736842,0.38,0.38
"Cotton, upland",2006,MISSOURI,29,"All Pesticides",8,TA,I,1.604,4.01,0.4,0.4
"Cotton, upland",2006,MISSOURI,29,Herbicides,8,TH,H,0.636,1.59,0.4,0.4
"Cotton, upland",2006,MISSOURI,29,Insecticides,8,TI,I,0.146,0.365,0.4,0.4
"Cotton, upland",2006,MISSOURI,29,"Other Pesticides",8,TO,O,0.822,2.055,0.4,0.4
"Cotton, upland",2005,MISSOURI,29,"All Pesticides",8,TA,I,1.604,4.01,0.4,0.4
"Cotton, upland",2005,MISSOURI,29,Herbicides,8,TH,H,0.636,1.59,0.4,0.4
"Cotton, upland",2005,MISSOURI,29,Insecticides,8,TI,I,0.146,0.365,0.4,0.4
"Cotton, upland",2005,MISSOURI,29,"Other Pesticides",8,TO,O,0.822,2.055,0.4,0.4
"Cotton, upland",2004,MISSOURI,29,"All Pesticides",8,TA,I,1.604,4.01,0.4,0.4
"Cotton, upland",2004,MISSOURI,29,Herbicides,8,TH,H,0.636,1.59,0.4,0.4
"Cotton, upland",2004,MISSOURI,29,Insecticides,8,TI,I,0.146,0.365,0.4,0.4
"Cotton, upland",2004,MISSOURI,29,"Other Pesticides",8,TO,O,0.822,2.055,0.4,0.4
"Cotton, upland",2003,MISSOURI,29,"All Pesticides",8,TA,I,1.604,4.01,0.4,0.4
"Cotton, upland",2003,MISSOURI,29,Herbicides,8,TH,H,0.636,1.59,0.4,0.4
"Cotton, upland",2003,MISSOURI,29,Insecticides,8,TI,I,0.146,0.365,0.4,0.4
"Cotton, upland",2003,MISSOURI,29,"Other Pesticides",8,TO,O,0.822,2.055,0.4,0.4
"Cotton, upland",2002,MISSOURI,29,"All Pesticides",8,TA,H,1.732,4.33,0.4,0.4
"Cotton, upland",2002,MISSOURI,29,Herbicides,8,TH,H,0.677,1.6925,0.4,0.4
"Cotton, upland",2002,MISSOURI,29,Insecticides,8,TI,I,0.36,0.9,0.4,0.4
"Cotton, upland",2002,MISSOURI,29,"Other Pesticides",8,TO,O,0.695,1.7375,0.4,0.4
"Cotton, upland",2001,MISSOURI,29,"All Pesticides",8,TA,H,1.732,4.33,0.4,0.4
"Cotton, upland",2001,MISSOURI,29,Herbicides,8,TH,H,0.677,1.6925,0.4,0.4
"Cotton, upland",2001,MISSOURI,29,Insecticides,8,TI,I,0.36,0.9,0.4,0.4
"Cotton, upland",2001,MISSOURI,29,"Other Pesticides",8,TO,O,0.695,1.7375,0.4,0.4
"Cotton, upland",2000,MISSOURI,29,"All Pesticides",8,TA,H,1.732,4.33,0.4,0.4
"Cotton, upland",2000,MISSOURI,29,Herbicides,8,TH,H,0.677,1.6925,0.4,0.4
"Cotton, upland",2000,MISSOURI,29,Insecticides,8,TI,I,0.36,0.9,0.4,0.4
"Cotton, upland",2000,MISSOURI,29,"Other Pesticides",8,TO,O,0.695,1.7375,0.4,0.4
"Cotton, upland",1999,MISSOURI,29,"All Pesticides",8,TA,O,1.622,4.10632911392405,0.395,0.395
"Cotton, upland",1999,MISSOURI,29,Herbicides,8,TH,H,0.839,2.12405063291139,0.395,0.395
"Cotton, upland",1999,MISSOURI,29,Insecticides,8,TI,I,0.21,0.531645569620253,0.395,0.395
"Cotton, upland",1999,MISSOURI,29,"Other Pesticides",8,TO,O,0.573,1.4506329113924,0.395,0.395
"Cotton, upland",1998,MISSOURI,29,"All Pesticides",8,TA,O,1.622,4.10632911392405,0.395,0.395
"Cotton, upland",1998,MISSOURI,29,Herbicides,8,TH,H,0.839,2.12405063291139,0.395,0.395
"Cotton, upland",1998,MISSOURI,29,Insecticides,8,TI,I,0.21,0.531645569620253,0.395,0.395
"Cotton, upland",1998,MISSOURI,29,"Other Pesticides",8,TO,O,0.573,1.4506329113924,0.395,0.395
"Cotton, upland",1997,MISSOURI,29,"All Pesticides",8,TA,O,1.622,4.10632911392405,0.395,0.395
"Cotton, upland",1997,MISSOURI,29,Herbicides,8,TH,H,0.839,2.12405063291139,0.395,0.395
"Cotton, upland",1997,MISSOURI,29,Insecticides,8,TI,I,0.21,0.531645569620253,0.395,0.395
"Cotton, upland",1997,MISSOURI,29,"Other Pesticides",8,TO,O,0.573,1.4506329113924,0.395,0.395
"Cotton, upland",2014,NATIONAL,0,"All Pesticides",8,TA,F,44.944,4.94161627267729,10.77,9.095
"Cotton, upland",2014,NATIONAL,0,Fungicides,8,TF,F,0.087,0.00956569543705332,10.77,9.095
"Cotton, upland",2014,NATIONAL,0,Herbicides,8,TH,H,24.315,2.67344694887301,10.77,9.095
"Cotton, upland",2014,NATIONAL,0,Insecticides,8,TI,I,6.041,0.664211105002749,10.77,9.095
"Cotton, upland",2014,NATIONAL,0,"Other Pesticides",8,TO,O,14.501,1.59439252336449,10.77,9.095
"Cotton, upland",2013,NATIONAL,0,"All Pesticides",8,TA,F,44.944,4.94161627267729,10.77,9.095
"Cotton, upland",2013,NATIONAL,0,Fungicides,8,TF,F,0.087,0.00956569543705332,10.77,9.095
"Cotton, upland",2013,NATIONAL,0,Herbicides,8,TH,H,24.315,2.67344694887301,10.77,9.095
"Cotton, upland",2013,NATIONAL,0,Insecticides,8,TI,I,6.041,0.664211105002749,10.77,9.095
"Cotton, upland",2013,NATIONAL,0,"Other Pesticides",8,TO,O,14.501,1.59439252336449,10.77,9.095
"Cotton, upland",2012,NATIONAL,0,"All Pesticides",8,TA,F,44.944,4.94161627267729,10.77,9.095
"Cotton, upland",2012,NATIONAL,0,Fungicides,8,TF,F,0.087,0.00956569543705332,10.77,9.095
"Cotton, upland",2012,NATIONAL,0,Herbicides,8,TH,H,24.315,2.67344694887301,10.77,9.095
"Cotton, upland",2012,NATIONAL,0,Insecticides,8,TI,I,6.041,0.664211105002749,10.77,9.095
"Cotton, upland",2012,NATIONAL,0,"Other Pesticides",8,TO,O,14.501,1.59439252336449,10.77,9.095
"Cotton, upland",2011,NATIONAL,0,"All Pesticides",8,TA,F,44.944,4.94161627267729,10.77,9.095
"Cotton, upland",2011,NATIONAL,0,Fungicides,8,TF,F,0.087,0.00956569543705332,10.77,9.095
"Cotton, upland",2011,NATIONAL,0,Herbicides,8,TH,H,24.315,2.67344694887301,10.77,9.095
"Cotton, upland",2011,NATIONAL,0,Insecticides,8,TI,I,6.041,0.664211105002749,10.77,9.095
"Cotton, upland",2011,NATIONAL,0,"Other Pesticides",8,TO,O,14.501,1.59439252336449,10.77,9.095
"Cotton, upland",2009,NATIONAL,0,"All Pesticides",8,TA,F,52.257,5.10322265625,10.8272,10.24
"Cotton, upland",2009,NATIONAL,0,Fungicides,8,TF,F,0.075,0.00732421875,10.8272,10.24
"Cotton, upland",2009,NATIONAL,0,Herbicides,8,TH,H,26.214,2.5599609375,10.8272,10.24
"Cotton, upland",2009,NATIONAL,0,Insecticides,8,TI,I,7.943,0.77568359375,10.8272,10.24
"Cotton, upland",2009,NATIONAL,0,"Other Pesticides",8,TO,O,18.025,1.76025390625,10.8272,10.24
"Cotton, upland",2008,NATIONAL,0,"All Pesticides",8,TA,F,52.257,5.10322265625,10.8272,10.24
"Cotton, upland",2008,NATIONAL,0,Fungicides,8,TF,F,0.075,0.00732421875,10.8272,10.24
"Cotton, upland",2008,NATIONAL,0,Herbicides,8,TH,H,26.214,2.5599609375,10.8272,10.24
"Cotton, upland",2008,NATIONAL,0,Insecticides,8,TI,I,7.943,0.77568359375,10.8272,10.24
"Cotton, upland",2008,NATIONAL,0,"Other Pesticides",8,TO,O,18.025,1.76025390625,10.8272,10.24
"Cotton, upland",2007,NATIONAL,0,"All Pesticides",8,TA,F,52.257,5.10322265625,10.8272,10.24
"Cotton, upland",2007,NATIONAL,0,Fungicides,8,TF,F,0.075,0.00732421875,10.8272,10.24
"Cotton, upland",2007,NATIONAL,0,Herbicides,8,TH,H,26.214,2.5599609375,10.8272,10.24
"Cotton, upland",2007,NATIONAL,0,Insecticides,8,TI,I,7.943,0.77568359375,10.8272,10.24
"Cotton, upland",2007,NATIONAL,0,"Other Pesticides",8,TO,O,18.025,1.76025390625,10.8272,10.24
"Cotton, upland",2006,NATIONAL,0,"All Pesticides",8,TA,F,55.738,4.46797595190381,13.975,12.475
"Cotton, upland",2006,NATIONAL,0,Fungicides,8,TF,F,0.123,0.00985971943887776,13.975,12.475
"Cotton, upland",2006,NATIONAL,0,Herbicides,8,TH,H,25.733,2.06276553106212,13.975,12.475
"Cotton, upland",2006,NATIONAL,0,Insecticides,8,TI,I,14.651,1.17442885771543,13.975,12.475
"Cotton, upland",2006,NATIONAL,0,"Other Pesticides",8,TO,O,15.231,1.22092184368737,13.975,12.475
"Cotton, upland",2005,NATIONAL,0,"All Pesticides",8,TA,F,55.738,4.46797595190381,13.975,12.475
"Cotton, upland",2005,NATIONAL,0,Fungicides,8,TF,F,0.123,0.00985971943887776,13.975,12.475
"Cotton, upland",2005,NATIONAL,0,Herbicides,8,TH,H,25.733,2.06276553106212,13.975,12.475
"Cotton, upland",2005,NATIONAL,0,Insecticides,8,TI,I,14.651,1.17442885771543,13.975,12.475
"Cotton, upland",2005,NATIONAL,0,"Other Pesticides",8,TO,O,15.231,1.22092184368737,13.975,12.475
"Cotton, upland",2004,NATIONAL,0,"All Pesticides",8,TA,H,55.237,4.31707698319656,13.301,12.795
"Cotton, upland",2004,NATIONAL,0,Fungicides,8,TF,F,0.348,0.0271981242672919,13.301,12.795
"Cotton, upland",2004,NATIONAL,0,Herbicides,8,TH,H,25.542,1.99624853458382,13.301,12.795
"Cotton, upland",2004,NATIONAL,0,Insecticides,8,TI,I,13.632,1.06541617819461,13.301,12.795
"Cotton, upland",2004,NATIONAL,0,"Other Pesticides",8,TO,O,15.715,1.22821414615084,13.301,12.795
"Cotton, upland",2003,NATIONAL,0,"All Pesticides",8,TA,H,55.237,4.31707698319656,13.301,12.795
"Cotton, upland",2003,NATIONAL,0,Fungicides,8,TF,F,0.348,0.0271981242672919,13.301,12.795
"Cotton, upland",2003,NATIONAL,0,Herbicides,8,TH,H,25.542,1.99624853458382,13.301,12.795
"Cotton, upland",2003,NATIONAL,0,Insecticides,8,TI,I,13.632,1.06541617819461,13.301,12.795
"Cotton, upland",2003,NATIONAL,0,"Other Pesticides",8,TO,O,15.715,1.22821414615084,13.301,12.795
"Cotton, upland",2002,NATIONAL,0,"All Pesticides",8,TA,H,58.555,5.29430379746835,15.4985,11.06
"Cotton, upland",2002,NATIONAL,0,Fungicides,8,TF,F,0.212,0.0191681735985533,15.4985,11.06
"Cotton, upland",2002,NATIONAL,0,Herbicides,8,TH,H,21.098,1.90759493670886,15.4985,11.06
"Cotton, upland",2002,NATIONAL,0,Insecticides,8,TI,I,23.81,2.15280289330922,15.4985,11.06
"Cotton, upland",2002,NATIONAL,0,"Other Pesticides",8,TO,O,13.435,1.21473779385172,15.4985,11.06
"Cotton, upland",2001,NATIONAL,0,"All Pesticides",8,TA,H,58.555,5.29430379746835,15.4985,11.06
"Cotton, upland",2001,NATIONAL,0,Fungicides,8,TF,F,0.212,0.0191681735985533,15.4985,11.06
"Cotton, upland",2001,NATIONAL,0,Herbicides,8,TH,H,21.098,1.90759493670886,15.4985,11.06
"Cotton, upland",2001,NATIONAL,0,Insecticides,8,TI,I,23.81,2.15280289330922,15.4985,11.06
"Cotton, upland",2001,NATIONAL,0,"Other Pesticides",8,TO,O,13.435,1.21473779385172,15.4985,11.06
"Cotton, upland",2000,NATIONAL,0,"All Pesticides",8,TA,I,84.189,5.84037460978148,15.347,14.415
"Cotton, upland",2000,NATIONAL,0,Fungicides,8,TF,F,0.641,0.0444675685050295,15.347,14.415
"Cotton, upland",2000,NATIONAL,0,Herbicides,8,TH,H,26.554,1.84210891432536,15.347,14.415
"Cotton, upland",2000,NATIONAL,0,Insecticides,8,TI,I,40.86,2.83454734651405,15.347,14.415
"Cotton, upland",2000,NATIONAL,0,"Other Pesticides",8,TO,O,16.134,1.11925078043704,15.347,14.415
"Cotton, upland",1999,NATIONAL,0,"All Pesticides",8,TA,O,80.916,6.08390977443609,14.584,13.3
"Cotton, upland",1999,NATIONAL,0,Fungicides,8,TF,F,0.723,0.0543609022556391,14.584,13.3
"Cotton, upland",1999,NATIONAL,0,Herbicides,8,TH,H,25.006,1.88015037593985,14.584,13.3
"Cotton, upland",1999,NATIONAL,0,Insecticides,8,TI,I,39.331,2.95721804511278,14.584,13.3
"Cotton, upland",1999,NATIONAL,0,"Other Pesticides",8,TO,O,15.856,1.19218045112782,14.584,13.3
"Cotton, upland",1998,NATIONAL,0,"All Pesticides",8,TA,O,49.902,4.16544240400668,13.0643,11.98
"Cotton, upland",1998,NATIONAL,0,Fungicides,8,TF,F,0.412,0.0343906510851419,13.0643,11.98
"Cotton, upland",1998,NATIONAL,0,Herbicides,8,TH,H,22.206,1.85358931552588,13.0643,11.98
"Cotton, upland",1998,NATIONAL,0,Insecticides,8,TI,I,15.289,1.27621035058431,13.0643,11.98
"Cotton, upland",1998,NATIONAL,0,"Other Pesticides",8,TO,O,11.995,1.00125208681135,13.0643,11.98
"Cotton, upland",1997,NATIONAL,0,"All Pesticides",8,TA,O,64.351,4.88803646031143,13.648,13.165
"Cotton, upland",1997,NATIONAL,0,Fungicides,8,TF,F,0.897,0.0681352069882264,13.648,13.165
"Cotton, upland",1997,NATIONAL,0,Herbicides,8,TH,H,27.611,2.09730345613369,13.648,13.165
"Cotton, upland",1997,NATIONAL,0,Insecticides,8,TI,I,18.282,1.3886821116597,13.648,13.165
"Cotton, upland",1997,NATIONAL,0,"Other Pesticides",8,TO,O,17.561,1.33391568552981,13.648,13.165
"Cotton, upland",1996,NATIONAL,0,"All Pesticides",8,TA,I,53.4,4.48551028979421,14.3945,11.905
"Cotton, upland",1996,NATIONAL,0,Fungicides,8,TF,F,0.397,0.0333473330533389,14.3945,11.905
"Cotton, upland",1996,NATIONAL,0,Herbicides,8,TH,H,22.561,1.89508609827803,14.3945,11.905
"Cotton, upland",1996,NATIONAL,0,Insecticides,8,TI,I,15.236,1.27979840403192,14.3945,11.905
"Cotton, upland",1996,NATIONAL,0,"Other Pesticides",8,TO,O,15.206,1.27727845443091,14.3945,11.905
"Cotton, upland",1995,NATIONAL,0,"All Pesticides",8,TA,O,57.582,4.94266094420601,16.7168,11.65
"Cotton, upland",1995,NATIONAL,0,Fungicides,8,TF,F,0.719,0.0617167381974249,16.7168,11.65
"Cotton, upland",1995,NATIONAL,0,Herbicides,8,TH,H,22.618,1.94145922746781,16.7168,11.65
"Cotton, upland",1995,NATIONAL,0,Insecticides,8,TI,I,20.668,1.77407725321888,16.7168,11.65
"Cotton, upland",1995,NATIONAL,0,"Other Pesticides",8,TO,O,13.577,1.16540772532189,16.7168,11.65
"Cotton, upland",1994,NATIONAL,0,"All Pesticides",8,TA,I,50.501,5.03851142372543,13.5516,10.023
"Cotton, upland",1994,NATIONAL,0,Fungicides,8,TF,F,0.778,0.0776214706175796,13.5516,10.023
"Cotton, upland",1994,NATIONAL,0,Herbicides,8,TH,H,20.868,2.08201137384017,13.5516,10.023
"Cotton, upland",1994,NATIONAL,0,Insecticides,8,TI,I,17.447,1.74069639828395,13.5516,10.023
"Cotton, upland",1994,NATIONAL,0,"Other Pesticides",8,TO,O,11.408,1.13818218098374,13.5516,10.023
"Cotton, upland",1993,NATIONAL,0,"All Pesticides",8,TA,H,40.35,3.98479162551847,13.2483,10.126
"Cotton, upland",1993,NATIONAL,0,Fungicides,8,TF,F,0.527,0.0520442425439463,13.2483,10.126
"Cotton, upland",1993,NATIONAL,0,Herbicides,8,TH,H,18.169,1.7942919217855,13.2483,10.126
"Cotton, upland",1993,NATIONAL,0,Insecticides,8,TI,I,11.895,1.17469879518072,13.2483,10.126
"Cotton, upland",1993,NATIONAL,0,"Other Pesticides",8,TO,O,9.759,0.963756666008296,13.2483,10.126
"Cotton, upland",1992,NATIONAL,0,"All Pesticides",8,TA,I,39.28,3.90263288623944,12.9766,10.065
"Cotton, upland",1992,NATIONAL,0,Fungicides,8,TF,F,0.595,0.0591157476403378,12.9766,10.065
"Cotton, upland",1992,NATIONAL,0,Herbicides,8,TH,H,18.92,1.87978142076503,12.9766,10.065
"Cotton, upland",1992,NATIONAL,0,Insecticides,8,TI,I,11.018,1.09468455042226,12.9766,10.065
"Cotton, upland",1992,NATIONAL,0,"Other Pesticides",8,TO,O,8.747,0.869051167411823,12.9766,10.065
"Cotton, upland",1991,NATIONAL,0,"All Pesticides",8,TA,H,38.732,3.5996282527881,13.8017,10.76
"Cotton, upland",1991,NATIONAL,0,Fungicides,8,TF,F,0.541,0.0502788104089219,13.8017,10.76
"Cotton, upland",1991,NATIONAL,0,Herbicides,8,TH,H,19.94,1.85315985130112,13.8017,10.76
"Cotton, upland",1991,NATIONAL,0,Insecticides,8,TI,I,6.316,0.586988847583643,13.8017,10.76
"Cotton, upland",1991,NATIONAL,0,"Other Pesticides",8,TO,O,11.935,1.10920074349442,13.8017,10.76
"Cotton, upland",2014,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.999,5.45272727272727,0.55,0.55
"Cotton, upland",2014,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.581,2.87454545454545,0.55,0.55
"Cotton, upland",2014,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.315,0.572727272727273,0.55,0.55
"Cotton, upland",2014,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,1.103,2.00545454545455,0.55,0.55
"Cotton, upland",2013,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.999,5.45272727272727,0.55,0.55
"Cotton, upland",2013,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.581,2.87454545454545,0.55,0.55
"Cotton, upland",2013,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.315,0.572727272727273,0.55,0.55
"Cotton, upland",2013,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,1.103,2.00545454545455,0.55,0.55
"Cotton, upland",2012,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.999,5.45272727272727,0.55,0.55
"Cotton, upland",2012,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.581,2.87454545454545,0.55,0.55
"Cotton, upland",2012,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.315,0.572727272727273,0.55,0.55
"Cotton, upland",2012,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,1.103,2.00545454545455,0.55,0.55
"Cotton, upland",2011,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,2.999,5.45272727272727,0.55,0.55
"Cotton, upland",2011,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.581,2.87454545454545,0.55,0.55
"Cotton, upland",2011,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.315,0.572727272727273,0.55,0.55
"Cotton, upland",2011,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,1.103,2.00545454545455,0.55,0.55
"Cotton, upland",2009,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,2.675,5.35,0.5,0.5
"Cotton, upland",2009,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.479,2.958,0.5,0.5
"Cotton, upland",2009,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.3,0.6,0.5,0.5
"Cotton, upland",2009,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,0.896,1.792,0.5,0.5
"Cotton, upland",2008,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,2.675,5.35,0.5,0.5
"Cotton, upland",2008,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.479,2.958,0.5,0.5
"Cotton, upland",2008,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.3,0.6,0.5,0.5
"Cotton, upland",2008,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,0.896,1.792,0.5,0.5
"Cotton, upland",2007,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,2.675,5.35,0.5,0.5
"Cotton, upland",2007,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.479,2.958,0.5,0.5
"Cotton, upland",2007,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.3,0.6,0.5,0.5
"Cotton, upland",2007,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,0.896,1.792,0.5,0.5
"Cotton, upland",2006,"NORTH CAROLINA",37,"All Pesticides",8,TA,O,4.461,5.47361963190184,0.815,0.815
"Cotton, upland",2006,"NORTH CAROLINA",37,Fungicides,8,TF,F,0.041,0.0503067484662577,0.815,0.815
"Cotton, upland",2006,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.181,2.6760736196319,0.815,0.815
"Cotton, upland",2006,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.597,0.732515337423313,0.815,0.815
"Cotton, upland",2006,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,1.642,2.01472392638037,0.815,0.815
"Cotton, upland",2005,"NORTH CAROLINA",37,"All Pesticides",8,TA,O,4.461,5.47361963190184,0.815,0.815
"Cotton, upland",2005,"NORTH CAROLINA",37,Fungicides,8,TF,F,0.041,0.0503067484662577,0.815,0.815
"Cotton, upland",2005,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.181,2.6760736196319,0.815,0.815
"Cotton, upland",2005,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.597,0.732515337423313,0.815,0.815
"Cotton, upland",2005,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,1.642,2.01472392638037,0.815,0.815
"Cotton, upland",2004,"NORTH CAROLINA",37,"All Pesticides",8,TA,F,4.62,5.7037037037037,0.81,0.81
"Cotton, upland",2004,"NORTH CAROLINA",37,Fungicides,8,TF,F,0.041,0.0506172839506173,0.81,0.81
"Cotton, upland",2004,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.118,2.61481481481481,0.81,0.81
"Cotton, upland",2004,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.42,0.518518518518518,0.81,0.81
"Cotton, upland",2004,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,2.041,2.51975308641975,0.81,0.81
"Cotton, upland",2003,"NORTH CAROLINA",37,"All Pesticides",8,TA,F,4.62,5.7037037037037,0.81,0.81
"Cotton, upland",2003,"NORTH CAROLINA",37,Fungicides,8,TF,F,0.041,0.0506172839506173,0.81,0.81
"Cotton, upland",2003,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.118,2.61481481481481,0.81,0.81
"Cotton, upland",2003,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.42,0.518518518518518,0.81,0.81
"Cotton, upland",2003,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,2.041,2.51975308641975,0.81,0.81
"Cotton, upland",2002,"NORTH CAROLINA",37,"All Pesticides",8,TA,O,4.825,5.18817204301075,0.93,0.93
"Cotton, upland",2002,"NORTH CAROLINA",37,Fungicides,8,TF,F,0.019,0.0204301075268817,0.93,0.93
"Cotton, upland",2002,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.375,2.55376344086022,0.93,0.93
"Cotton, upland",2002,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.51,0.548387096774194,0.93,0.93
"Cotton, upland",2002,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,1.921,2.06559139784946,0.93,0.93
"Cotton, upland",2001,"NORTH CAROLINA",37,"All Pesticides",8,TA,O,4.825,5.18817204301075,0.93,0.93
"Cotton, upland",2001,"NORTH CAROLINA",37,Fungicides,8,TF,F,0.019,0.0204301075268817,0.93,0.93
"Cotton, upland",2001,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.375,2.55376344086022,0.93,0.93
"Cotton, upland",2001,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.51,0.548387096774194,0.93,0.93
"Cotton, upland",2001,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,1.921,2.06559139784946,0.93,0.93
"Cotton, upland",2000,"NORTH CAROLINA",37,"All Pesticides",8,TA,O,4.825,5.18817204301075,0.93,0.93
"Cotton, upland",2000,"NORTH CAROLINA",37,Fungicides,8,TF,F,0.019,0.0204301075268817,0.93,0.93
"Cotton, upland",2000,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.375,2.55376344086022,0.93,0.93
"Cotton, upland",2000,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.51,0.548387096774194,0.93,0.93
"Cotton, upland",2000,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,1.921,2.06559139784946,0.93,0.93
"Cotton, upland",1999,"NORTH CAROLINA",37,"All Pesticides",8,TA,I,3.65,4.14772727272727,0.88,0.88
"Cotton, upland",1999,"NORTH CAROLINA",37,Fungicides,8,TF,F,0.042,0.0477272727272727,0.88,0.88
"Cotton, upland",1999,"NORTH CAROLINA",37,Herbicides,8,TH,H,2.079,2.3625,0.88,0.88
"Cotton, upland",1999,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.533,0.605681818181818,0.88,0.88
"Cotton, upland",1999,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,0.996,1.13181818181818,0.88,0.88
"Cotton, upland",1998,"NORTH CAROLINA",37,"All Pesticides",8,TA,H,2.796,3.93802816901409,0.71,0.71
"Cotton, upland",1998,"NORTH CAROLINA",37,Fungicides,8,TF,F,0.03,0.0422535211267606,0.71,0.71
"Cotton, upland",1998,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.494,2.10422535211268,0.71,0.71
"Cotton, upland",1998,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.363,0.511267605633803,0.71,0.71
"Cotton, upland",1998,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,0.909,1.28028169014085,0.71,0.71
"Cotton, upland",1997,"NORTH CAROLINA",37,"All Pesticides",8,TA,O,3.264,4.7304347826087,0.69,0.69
"Cotton, upland",1997,"NORTH CAROLINA",37,Herbicides,8,TH,H,1.832,2.65507246376812,0.69,0.69
"Cotton, upland",1997,"NORTH CAROLINA",37,Insecticides,8,TI,I,0.339,0.491304347826087,0.69,0.69
"Cotton, upland",1997,"NORTH CAROLINA",37,"Other Pesticides",8,TO,O,1.093,1.58405797101449,0.69,0.69
"Cotton, upland",2014,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.924,5.13333333333333,0.18,0.18
"Cotton, upland",2014,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.013,0.0722222222222222,0.18,0.18
"Cotton, upland",2014,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.535,2.97222222222222,0.18,0.18
"Cotton, upland",2014,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.085,0.472222222222222,0.18,0.18
"Cotton, upland",2014,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.291,1.61666666666667,0.18,0.18
"Cotton, upland",2013,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.924,5.13333333333333,0.18,0.18
"Cotton, upland",2013,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.013,0.0722222222222222,0.18,0.18
"Cotton, upland",2013,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.535,2.97222222222222,0.18,0.18
"Cotton, upland",2013,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.085,0.472222222222222,0.18,0.18
"Cotton, upland",2013,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.291,1.61666666666667,0.18,0.18
"Cotton, upland",2012,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.924,5.13333333333333,0.18,0.18
"Cotton, upland",2012,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.013,0.0722222222222222,0.18,0.18
"Cotton, upland",2012,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.535,2.97222222222222,0.18,0.18
"Cotton, upland",2012,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.085,0.472222222222222,0.18,0.18
"Cotton, upland",2012,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.291,1.61666666666667,0.18,0.18
"Cotton, upland",2011,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.924,5.13333333333333,0.18,0.18
"Cotton, upland",2011,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.013,0.0722222222222222,0.18,0.18
"Cotton, upland",2011,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.535,2.97222222222222,0.18,0.18
"Cotton, upland",2011,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.085,0.472222222222222,0.18,0.18
"Cotton, upland",2011,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.291,1.61666666666667,0.18,0.18
"Cotton, upland",2010,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.924,5.13333333333333,0.18,0.18
"Cotton, upland",2010,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.013,0.0722222222222222,0.18,0.18
"Cotton, upland",2010,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.535,2.97222222222222,0.18,0.18
"Cotton, upland",2010,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.085,0.472222222222222,0.18,0.18
"Cotton, upland",2010,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.291,1.61666666666667,0.18,0.18
"Cotton, upland",2009,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.924,5.13333333333333,0.18,0.18
"Cotton, upland",2009,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.013,0.0722222222222222,0.18,0.18
"Cotton, upland",2009,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.535,2.97222222222222,0.18,0.18
"Cotton, upland",2009,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.085,0.472222222222222,0.18,0.18
"Cotton, upland",2009,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.291,1.61666666666667,0.18,0.18
"Cotton, upland",2008,"SOUTH CAROLINA",45,"All Pesticides",8,TA,H,0.924,5.13333333333333,0.18,0.18
"Cotton, upland",2008,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.013,0.0722222222222222,0.18,0.18
"Cotton, upland",2008,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.535,2.97222222222222,0.18,0.18
"Cotton, upland",2008,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.085,0.472222222222222,0.18,0.18
"Cotton, upland",2008,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.291,1.61666666666667,0.18,0.18
"Cotton, upland",2006,"SOUTH CAROLINA",45,"All Pesticides",8,TA,I,0.922,4.19090909090909,0.22,0.22
"Cotton, upland",2006,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.004,0.0181818181818182,0.22,0.22
"Cotton, upland",2006,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.47,2.13636363636364,0.22,0.22
"Cotton, upland",2006,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.141,0.640909090909091,0.22,0.22
"Cotton, upland",2006,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.307,1.39545454545455,0.22,0.22
"Cotton, upland",2005,"SOUTH CAROLINA",45,"All Pesticides",8,TA,I,0.922,4.19090909090909,0.22,0.22
"Cotton, upland",2005,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.004,0.0181818181818182,0.22,0.22
"Cotton, upland",2005,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.47,2.13636363636364,0.22,0.22
"Cotton, upland",2005,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.141,0.640909090909091,0.22,0.22
"Cotton, upland",2005,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.307,1.39545454545455,0.22,0.22
"Cotton, upland",2004,"SOUTH CAROLINA",45,"All Pesticides",8,TA,I,0.922,4.19090909090909,0.22,0.22
"Cotton, upland",2004,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.004,0.0181818181818182,0.22,0.22
"Cotton, upland",2004,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.47,2.13636363636364,0.22,0.22
"Cotton, upland",2004,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.141,0.640909090909091,0.22,0.22
"Cotton, upland",2004,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.307,1.39545454545455,0.22,0.22
"Cotton, upland",2003,"SOUTH CAROLINA",45,"All Pesticides",8,TA,I,0.922,4.19090909090909,0.22,0.22
"Cotton, upland",2003,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.004,0.0181818181818182,0.22,0.22
"Cotton, upland",2003,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.47,2.13636363636364,0.22,0.22
"Cotton, upland",2003,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.141,0.640909090909091,0.22,0.22
"Cotton, upland",2003,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.307,1.39545454545455,0.22,0.22
"Cotton, upland",2002,"SOUTH CAROLINA",45,"All Pesticides",8,TA,I,1.588,5.47586206896552,0.29,0.29
"Cotton, upland",2002,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.005,0.0172413793103448,0.29,0.29
"Cotton, upland",2002,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.875,3.01724137931035,0.29,0.29
"Cotton, upland",2002,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.241,0.831034482758621,0.29,0.29
"Cotton, upland",2002,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.467,1.61034482758621,0.29,0.29
"Cotton, upland",2001,"SOUTH CAROLINA",45,"All Pesticides",8,TA,I,1.588,5.47586206896552,0.29,0.29
"Cotton, upland",2001,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.005,0.0172413793103448,0.29,0.29
"Cotton, upland",2001,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.875,3.01724137931035,0.29,0.29
"Cotton, upland",2001,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.241,0.831034482758621,0.29,0.29
"Cotton, upland",2001,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.467,1.61034482758621,0.29,0.29
"Cotton, upland",2000,"SOUTH CAROLINA",45,"All Pesticides",8,TA,I,1.588,5.47586206896552,0.29,0.29
"Cotton, upland",2000,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.005,0.0172413793103448,0.29,0.29
"Cotton, upland",2000,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.875,3.01724137931035,0.29,0.29
"Cotton, upland",2000,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.241,0.831034482758621,0.29,0.29
"Cotton, upland",2000,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.467,1.61034482758621,0.29,0.29
"Cotton, upland",1999,"SOUTH CAROLINA",45,"All Pesticides",8,TA,I,1.588,5.47586206896552,0.29,0.29
"Cotton, upland",1999,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.005,0.0172413793103448,0.29,0.29
"Cotton, upland",1999,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.875,3.01724137931035,0.29,0.29
"Cotton, upland",1999,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.241,0.831034482758621,0.29,0.29
"Cotton, upland",1999,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.467,1.61034482758621,0.29,0.29
"Cotton, upland",1998,"SOUTH CAROLINA",45,"All Pesticides",8,TA,I,1.588,5.47586206896552,0.29,0.29
"Cotton, upland",1998,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.005,0.0172413793103448,0.29,0.29
"Cotton, upland",1998,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.875,3.01724137931035,0.29,0.29
"Cotton, upland",1998,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.241,0.831034482758621,0.29,0.29
"Cotton, upland",1998,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.467,1.61034482758621,0.29,0.29
"Cotton, upland",1997,"SOUTH CAROLINA",45,"All Pesticides",8,TA,I,1.588,5.47586206896552,0.29,0.29
"Cotton, upland",1997,"SOUTH CAROLINA",45,Fungicides,8,TF,F,0.005,0.0172413793103448,0.29,0.29
"Cotton, upland",1997,"SOUTH CAROLINA",45,Herbicides,8,TH,H,0.875,3.01724137931035,0.29,0.29
"Cotton, upland",1997,"SOUTH CAROLINA",45,Insecticides,8,TI,I,0.241,0.831034482758621,0.29,0.29
"Cotton, upland",1997,"SOUTH CAROLINA",45,"Other Pesticides",8,TO,O,0.467,1.61034482758621,0.29,0.29
"Cotton, upland",2014,TENNESSEE,47,"All Pesticides",8,TA,H,2.227,5.71025641025641,0.39,0.39
"Cotton, upland",2014,TENNESSEE,47,Herbicides,8,TH,H,1.291,3.31025641025641,0.39,0.39
"Cotton, upland",2014,TENNESSEE,47,Insecticides,8,TI,I,0.146,0.374358974358974,0.39,0.39
"Cotton, upland",2014,TENNESSEE,47,"Other Pesticides",8,TO,O,0.79,2.02564102564103,0.39,0.39
"Cotton, upland",2013,TENNESSEE,47,"All Pesticides",8,TA,H,2.227,5.71025641025641,0.39,0.39
"Cotton, upland",2013,TENNESSEE,47,Herbicides,8,TH,H,1.291,3.31025641025641,0.39,0.39
"Cotton, upland",2013,TENNESSEE,47,Insecticides,8,TI,I,0.146,0.374358974358974,0.39,0.39
"Cotton, upland",2013,TENNESSEE,47,"Other Pesticides",8,TO,O,0.79,2.02564102564103,0.39,0.39
"Cotton, upland",2012,TENNESSEE,47,"All Pesticides",8,TA,H,2.227,5.71025641025641,0.39,0.39
"Cotton, upland",2012,TENNESSEE,47,Herbicides,8,TH,H,1.291,3.31025641025641,0.39,0.39
"Cotton, upland",2012,TENNESSEE,47,Insecticides,8,TI,I,0.146,0.374358974358974,0.39,0.39
"Cotton, upland",2012,TENNESSEE,47,"Other Pesticides",8,TO,O,0.79,2.02564102564103,0.39,0.39
"Cotton, upland",2011,TENNESSEE,47,"All Pesticides",8,TA,H,2.227,5.71025641025641,0.39,0.39
"Cotton, upland",2011,TENNESSEE,47,Herbicides,8,TH,H,1.291,3.31025641025641,0.39,0.39
"Cotton, upland",2011,TENNESSEE,47,Insecticides,8,TI,I,0.146,0.374358974358974,0.39,0.39
"Cotton, upland",2011,TENNESSEE,47,"Other Pesticides",8,TO,O,0.79,2.02564102564103,0.39,0.39
"Cotton, upland",2009,TENNESSEE,47,"All Pesticides",8,TA,O,2.695,5.23300970873786,0.515,0.515
"Cotton, upland",2009,TENNESSEE,47,Herbicides,8,TH,H,1.482,2.87766990291262,0.515,0.515
"Cotton, upland",2009,TENNESSEE,47,Insecticides,8,TI,I,0.228,0.442718446601942,0.515,0.515
"Cotton, upland",2009,TENNESSEE,47,"Other Pesticides",8,TO,O,0.985,1.9126213592233,0.515,0.515
"Cotton, upland",2008,TENNESSEE,47,"All Pesticides",8,TA,O,2.695,5.23300970873786,0.515,0.515
"Cotton, upland",2008,TENNESSEE,47,Herbicides,8,TH,H,1.482,2.87766990291262,0.515,0.515
"Cotton, upland",2008,TENNESSEE,47,Insecticides,8,TI,I,0.228,0.442718446601942,0.515,0.515
"Cotton, upland",2008,TENNESSEE,47,"Other Pesticides",8,TO,O,0.985,1.9126213592233,0.515,0.515
"Cotton, upland",2007,TENNESSEE,47,"All Pesticides",8,TA,O,2.695,5.23300970873786,0.515,0.515
"Cotton, upland",2007,TENNESSEE,47,Herbicides,8,TH,H,1.482,2.87766990291262,0.515,0.515
"Cotton, upland",2007,TENNESSEE,47,Insecticides,8,TI,I,0.228,0.442718446601942,0.515,0.515
"Cotton, upland",2007,TENNESSEE,47,"Other Pesticides",8,TO,O,0.985,1.9126213592233,0.515,0.515
"Cotton, upland",2006,TENNESSEE,47,"All Pesticides",8,TA,O,2.622,4.096875,0.64,0.64
"Cotton, upland",2006,TENNESSEE,47,Herbicides,8,TH,H,1.339,2.0921875,0.64,0.64
"Cotton, upland",2006,TENNESSEE,47,Insecticides,8,TI,I,0.253,0.3953125,0.64,0.64
"Cotton, upland",2006,TENNESSEE,47,"Other Pesticides",8,TO,O,1.03,1.609375,0.64,0.64
"Cotton, upland",2005,TENNESSEE,47,"All Pesticides",8,TA,O,2.622,4.096875,0.64,0.64
"Cotton, upland",2005,TENNESSEE,47,Herbicides,8,TH,H,1.339,2.0921875,0.64,0.64
"Cotton, upland",2005,TENNESSEE,47,Insecticides,8,TI,I,0.253,0.3953125,0.64,0.64
"Cotton, upland",2005,TENNESSEE,47,"Other Pesticides",8,TO,O,1.03,1.609375,0.64,0.64
"Cotton, upland",2004,TENNESSEE,47,"All Pesticides",8,TA,F,2.588,4.62142857142857,0.56,0.56
"Cotton, upland",2004,TENNESSEE,47,Fungicides,8,TF,F,0.033,0.0589285714285714,0.56,0.56
"Cotton, upland",2004,TENNESSEE,47,Herbicides,8,TH,H,1.27,2.26785714285714,0.56,0.56
"Cotton, upland",2004,TENNESSEE,47,Insecticides,8,TI,I,0.422,0.753571428571428,0.56,0.56
"Cotton, upland",2004,TENNESSEE,47,"Other Pesticides",8,TO,O,0.863,1.54107142857143,0.56,0.56
"Cotton, upland",2003,TENNESSEE,47,"All Pesticides",8,TA,F,2.588,4.62142857142857,0.56,0.56
"Cotton, upland",2003,TENNESSEE,47,Fungicides,8,TF,F,0.033,0.0589285714285714,0.56,0.56
"Cotton, upland",2003,TENNESSEE,47,Herbicides,8,TH,H,1.27,2.26785714285714,0.56,0.56
"Cotton, upland",2003,TENNESSEE,47,Insecticides,8,TI,I,0.422,0.753571428571428,0.56,0.56
"Cotton, upland",2003,TENNESSEE,47,"Other Pesticides",8,TO,O,0.863,1.54107142857143,0.56,0.56
"Cotton, upland",2002,TENNESSEE,47,"All Pesticides",8,TA,I,6.448,11.3122807017544,0.57,0.57
"Cotton, upland",2002,TENNESSEE,47,Fungicides,8,TF,F,0.077,0.135087719298246,0.57,0.57
"Cotton, upland",2002,TENNESSEE,47,Herbicides,8,TH,H,1.347,2.36315789473684,0.57,0.57
"Cotton, upland",2002,TENNESSEE,47,Insecticides,8,TI,I,4.333,7.60175438596491,0.57,0.57
"Cotton, upland",2002,TENNESSEE,47,"Other Pesticides",8,TO,O,0.691,1.21228070175439,0.57,0.57
"Cotton, upland",2001,TENNESSEE,47,"All Pesticides",8,TA,I,6.448,11.3122807017544,0.57,0.57
"Cotton, upland",2001,TENNESSEE,47,Fungicides,8,TF,F,0.077,0.135087719298246,0.57,0.57
"Cotton, upland",2001,TENNESSEE,47,Herbicides,8,TH,H,1.347,2.36315789473684,0.57,0.57
"Cotton, upland",2001,TENNESSEE,47,Insecticides,8,TI,I,4.333,7.60175438596491,0.57,0.57
"Cotton, upland",2001,TENNESSEE,47,"Other Pesticides",8,TO,O,0.691,1.21228070175439,0.57,0.57
"Cotton, upland",2000,TENNESSEE,47,"All Pesticides",8,TA,I,6.448,11.3122807017544,0.57,0.57
"Cotton, upland",2000,TENNESSEE,47,Fungicides,8,TF,F,0.077,0.135087719298246,0.57,0.57
"Cotton, upland",2000,TENNESSEE,47,Herbicides,8,TH,H,1.347,2.36315789473684,0.57,0.57
"Cotton, upland",2000,TENNESSEE,47,Insecticides,8,TI,I,4.333,7.60175438596491,0.57,0.57
"Cotton, upland",2000,TENNESSEE,47,"Other Pesticides",8,TO,O,0.691,1.21228070175439,0.57,0.57
"Cotton, upland",1999,TENNESSEE,47,"All Pesticides",8,TA,F,3.324,5.83157894736842,0.57,0.57
"Cotton, upland",1999,TENNESSEE,47,Fungicides,8,TF,F,0.132,0.231578947368421,0.57,0.57
"Cotton, upland",1999,TENNESSEE,47,Herbicides,8,TH,H,1.385,2.42982456140351,0.57,0.57
"Cotton, upland",1999,TENNESSEE,47,Insecticides,8,TI,I,1.222,2.14385964912281,0.57,0.57
"Cotton, upland",1999,TENNESSEE,47,"Other Pesticides",8,TO,O,0.585,1.02631578947368,0.57,0.57
"Cotton, upland",1998,TENNESSEE,47,"All Pesticides",8,TA,F,3.032,6.73777777777778,0.45,0.45
"Cotton, upland",1998,TENNESSEE,47,Fungicides,8,TF,F,0.061,0.135555555555556,0.45,0.45
"Cotton, upland",1998,TENNESSEE,47,Herbicides,8,TH,H,1.127,2.50444444444444,0.45,0.45
"Cotton, upland",1998,TENNESSEE,47,Insecticides,8,TI,I,1.297,2.88222222222222,0.45,0.45
"Cotton, upland",1998,TENNESSEE,47,"Other Pesticides",8,TO,O,0.547,1.21555555555556,0.45,0.45
"Cotton, upland",1997,TENNESSEE,47,"All Pesticides",8,TA,F,2.366,4.82857142857143,0.49,0.49
"Cotton, upland",1997,TENNESSEE,47,Fungicides,8,TF,F,0.123,0.251020408163265,0.49,0.49
"Cotton, upland",1997,TENNESSEE,47,Herbicides,8,TH,H,1.275,2.60204081632653,0.49,0.49
"Cotton, upland",1997,TENNESSEE,47,Insecticides,8,TI,I,0.417,0.851020408163265,0.49,0.49
"Cotton, upland",1997,TENNESSEE,47,"Other Pesticides",8,TO,O,0.551,1.12448979591837,0.49,0.49
"Cotton, upland",1996,TENNESSEE,47,"All Pesticides",8,TA,F,3.223,5.96851851851852,0.54,0.54
"Cotton, upland",1996,TENNESSEE,47,Fungicides,8,TF,F,0.097,0.17962962962963,0.54,0.54
"Cotton, upland",1996,TENNESSEE,47,Herbicides,8,TH,H,1.889,3.49814814814815,0.54,0.54
"Cotton, upland",1996,TENNESSEE,47,Insecticides,8,TI,I,0.505,0.935185185185185,0.54,0.54
"Cotton, upland",1996,TENNESSEE,47,"Other Pesticides",8,TO,O,0.732,1.35555555555556,0.54,0.54
"Cotton, upland",2014,TEXAS,48,"All Pesticides",8,TA,O,21.427,3.86072072072072,5.55,5.55
"Cotton, upland",2014,TEXAS,48,Herbicides,8,TH,H,13.111,2.36234234234234,5.55,5.55
"Cotton, upland",2014,TEXAS,48,Insecticides,8,TI,I,2.891,0.520900900900901,5.55,5.55
"Cotton, upland",2014,TEXAS,48,"Other Pesticides",8,TO,O,5.425,0.977477477477477,5.55,5.55
"Cotton, upland",2013,TEXAS,48,"All Pesticides",8,TA,O,21.427,3.86072072072072,5.55,5.55
"Cotton, upland",2013,TEXAS,48,Herbicides,8,TH,H,13.111,2.36234234234234,5.55,5.55
"Cotton, upland",2013,TEXAS,48,Insecticides,8,TI,I,2.891,0.520900900900901,5.55,5.55
"Cotton, upland",2013,TEXAS,48,"Other Pesticides",8,TO,O,5.425,0.977477477477477,5.55,5.55
"Cotton, upland",2012,TEXAS,48,"All Pesticides",8,TA,O,21.427,3.86072072072072,5.55,5.55
"Cotton, upland",2012,TEXAS,48,Herbicides,8,TH,H,13.111,2.36234234234234,5.55,5.55
"Cotton, upland",2012,TEXAS,48,Insecticides,8,TI,I,2.891,0.520900900900901,5.55,5.55
"Cotton, upland",2012,TEXAS,48,"Other Pesticides",8,TO,O,5.425,0.977477477477477,5.55,5.55
"Cotton, upland",2011,TEXAS,48,"All Pesticides",8,TA,O,21.427,3.86072072072072,5.55,5.55
"Cotton, upland",2011,TEXAS,48,Herbicides,8,TH,H,13.111,2.36234234234234,5.55,5.55
"Cotton, upland",2011,TEXAS,48,Insecticides,8,TI,I,2.891,0.520900900900901,5.55,5.55
"Cotton, upland",2011,TEXAS,48,"Other Pesticides",8,TO,O,5.425,0.977477477477477,5.55,5.55
"Cotton, upland",2009,TEXAS,48,"All Pesticides",8,TA,H,19.858,4.03208121827411,4.925,4.925
"Cotton, upland",2009,TEXAS,48,Herbicides,8,TH,H,11.532,2.34152284263959,4.925,4.925
"Cotton, upland",2009,TEXAS,48,Insecticides,8,TI,I,2.624,0.532791878172589,4.925,4.925
"Cotton, upland",2009,TEXAS,48,"Other Pesticides",8,TO,O,5.702,1.15776649746193,4.925,4.925
"Cotton, upland",2008,TEXAS,48,"All Pesticides",8,TA,H,19.858,4.03208121827411,4.925,4.925
"Cotton, upland",2008,TEXAS,48,Herbicides,8,TH,H,11.532,2.34152284263959,4.925,4.925
"Cotton, upland",2008,TEXAS,48,Insecticides,8,TI,I,2.624,0.532791878172589,4.925,4.925
"Cotton, upland",2008,TEXAS,48,"Other Pesticides",8,TO,O,5.702,1.15776649746193,4.925,4.925
"Cotton, upland",2007,TEXAS,48,"All Pesticides",8,TA,H,19.858,4.03208121827411,4.925,4.925
"Cotton, upland",2007,TEXAS,48,Herbicides,8,TH,H,11.532,2.34152284263959,4.925,4.925
"Cotton, upland",2007,TEXAS,48,Insecticides,8,TI,I,2.624,0.532791878172589,4.925,4.925
"Cotton, upland",2007,TEXAS,48,"Other Pesticides",8,TO,O,5.702,1.15776649746193,4.925,4.925
"Cotton, upland",2006,TEXAS,48,"All Pesticides",8,TA,O,17.698,2.9744537815126,5.95,5.95
"Cotton, upland",2006,TEXAS,48,Herbicides,8,TH,H,8.677,1.45831932773109,5.95,5.95
"Cotton, upland",2006,TEXAS,48,Insecticides,8,TI,I,5.946,0.999327731092437,5.95,5.95
"Cotton, upland",2006,TEXAS,48,"Other Pesticides",8,TO,O,3.075,0.516806722689076,5.95,5.95
"Cotton, upland",2005,TEXAS,48,"All Pesticides",8,TA,O,17.698,2.9744537815126,5.95,5.95
"Cotton, upland",2005,TEXAS,48,Herbicides,8,TH,H,8.677,1.45831932773109,5.95,5.95
"Cotton, upland",2005,TEXAS,48,Insecticides,8,TI,I,5.946,0.999327731092437,5.95,5.95
"Cotton, upland",2005,TEXAS,48,"Other Pesticides",8,TO,O,3.075,0.516806722689076,5.95,5.95
"Cotton, upland",2004,TEXAS,48,"All Pesticides",8,TA,H,12.203,2.17910714285714,5.6,5.6
"Cotton, upland",2004,TEXAS,48,Herbicides,8,TH,H,7.701,1.37517857142857,5.6,5.6
"Cotton, upland",2004,TEXAS,48,Insecticides,8,TI,I,3.102,0.553928571428571,5.6,5.6
"Cotton, upland",2004,TEXAS,48,"Other Pesticides",8,TO,O,1.4,0.25,5.6,5.6
"Cotton, upland",2003,TEXAS,48,"All Pesticides",8,TA,H,12.203,2.17910714285714,5.6,5.6
"Cotton, upland",2003,TEXAS,48,Herbicides,8,TH,H,7.701,1.37517857142857,5.6,5.6
"Cotton, upland",2003,TEXAS,48,Insecticides,8,TI,I,3.102,0.553928571428571,5.6,5.6
"Cotton, upland",2003,TEXAS,48,"Other Pesticides",8,TO,O,1.4,0.25,5.6,5.6
"Cotton, upland",2002,TEXAS,48,"All Pesticides",8,TA,O,21.857,3.64283333333333,6.0,6.0
"Cotton, upland",2002,TEXAS,48,Fungicides,8,TF,F,0.019,0.00316666666666667,6.0,6.0
"Cotton, upland",2002,TEXAS,48,Herbicides,8,TH,H,5.921,0.986833333333333,6.0,6.0
"Cotton, upland",2002,TEXAS,48,Insecticides,8,TI,I,14.587,2.43116666666667,6.0,6.0
"Cotton, upland",2002,TEXAS,48,"Other Pesticides",8,TO,O,1.33,0.221666666666667,6.0,6.0
"Cotton, upland",2001,TEXAS,48,"All Pesticides",8,TA,O,21.857,3.64283333333333,6.0,6.0
"Cotton, upland",2001,TEXAS,48,Fungicides,8,TF,F,0.019,0.00316666666666667,6.0,6.0
"Cotton, upland",2001,TEXAS,48,Herbicides,8,TH,H,5.921,0.986833333333333,6.0,6.0
"Cotton, upland",2001,TEXAS,48,Insecticides,8,TI,I,14.587,2.43116666666667,6.0,6.0
"Cotton, upland",2001,TEXAS,48,"Other Pesticides",8,TO,O,1.33,0.221666666666667,6.0,6.0
"Cotton, upland",2000,TEXAS,48,"All Pesticides",8,TA,F,30.128,4.89886178861789,6.15,6.15
"Cotton, upland",2000,TEXAS,48,Fungicides,8,TF,F,0.049,0.00796747967479675,6.15,6.15
"Cotton, upland",2000,TEXAS,48,Herbicides,8,TH,H,7.847,1.22609375,6.4,6.4
"Cotton, upland",2000,TEXAS,48,Insecticides,8,TI,I,20.639,3.22484375,6.4,6.4
"Cotton, upland",2000,TEXAS,48,"Other Pesticides",8,TO,O,1.593,0.24890625,6.4,6.4
"Cotton, upland",1999,TEXAS,48,"All Pesticides",8,TA,F,32.387,5.26617886178862,6.15,6.15
"Cotton, upland",1999,TEXAS,48,Fungicides,8,TF,F,0.049,0.00796747967479675,6.15,6.15
"Cotton, upland",1999,TEXAS,48,Herbicides,8,TH,H,7.081,1.15138211382114,6.15,6.15
"Cotton, upland",1999,TEXAS,48,Insecticides,8,TI,I,23.417,3.80764227642276,6.15,6.15
"Cotton, upland",1999,TEXAS,48,"Other Pesticides",8,TO,O,1.84,0.299186991869919,6.15,6.15
"Cotton, upland",1998,TEXAS,48,"All Pesticides",8,TA,I,11.969,2.11840707964602,5.65,5.65
"Cotton, upland",1998,TEXAS,48,Fungicides,8,TF,F,0.034,0.00623853211009174,5.45,5.45
"Cotton, upland",1998,TEXAS,48,Herbicides,8,TH,H,6.989,1.23699115044248,5.65,5.65
"Cotton, upland",1998,TEXAS,48,Insecticides,8,TI,I,2.833,0.50141592920354,5.65,5.65
"Cotton, upland",1998,TEXAS,48,"Other Pesticides",8,TO,O,2.113,0.373982300884956,5.65,5.65
"Cotton, upland",1997,TEXAS,48,"All Pesticides",8,TA,F,15.16,2.78165137614679,5.45,5.45
"Cotton, upland",1997,TEXAS,48,Fungicides,8,TF,F,0.034,0.00623853211009174,5.45,5.45
"Cotton, upland",1997,TEXAS,48,Herbicides,8,TH,H,6.401,1.16381818181818,5.5,5.5
"Cotton, upland",1997,TEXAS,48,Insecticides,8,TI,I,6.327,1.15036363636364,5.5,5.5
"Cotton, upland",1997,TEXAS,48,"Other Pesticides",8,TO,O,2.398,0.436,5.5,5.5
"Cotton, upland",1996,TEXAS,48,"All Pesticides",8,TA,O,13.622,2.38982456140351,5.7,5.7
"Cotton, upland",1996,TEXAS,48,Fungicides,8,TF,F,0.034,0.00623853211009174,5.45,5.45
"Cotton, upland",1996,TEXAS,48,Herbicides,8,TH,H,5.692,0.99859649122807,5.7,5.7
"Cotton, upland",1996,TEXAS,48,Insecticides,8,TI,I,5.832,1.02315789473684,5.7,5.7
"Cotton, upland",1996,TEXAS,48,"Other Pesticides",8,TO,O,2.064,0.362105263157895,5.7,5.7
"Cotton, upland",1995,TEXAS,48,"All Pesticides",8,TA,O,14.847,2.31984375,6.4,6.4
"Cotton, upland",1995,TEXAS,48,Fungicides,8,TF,F,0.034,0.00623853211009174,5.45,5.45
"Cotton, upland",1995,TEXAS,48,Herbicides,8,TH,H,7.43,1.1609375,6.4,6.4
"Cotton, upland",1995,TEXAS,48,Insecticides,8,TI,I,5.729,0.89515625,6.4,6.4
"Cotton, upland",1995,TEXAS,48,"Other Pesticides",8,TO,O,1.654,0.2584375,6.4,6.4
"Cotton, upland",1994,TEXAS,48,"All Pesticides",8,TA,O,12.364,2.26862385321101,5.45,5.45
"Cotton, upland",1994,TEXAS,48,Fungicides,8,TF,F,0.034,0.00623853211009174,5.45,5.45
"Cotton, upland",1994,TEXAS,48,Herbicides,8,TH,H,6.46,1.18532110091743,5.45,5.45
"Cotton, upland",1994,TEXAS,48,Insecticides,8,TI,I,3.998,0.733577981651376,5.45,5.45
"Cotton, upland",1994,TEXAS,48,"Other Pesticides",8,TO,O,1.872,0.34348623853211,5.45,5.45
"Cotton, upland",1993,TEXAS,48,"All Pesticides",8,TA,F,7.993,1.45327272727273,5.5,5.5
"Cotton, upland",1993,TEXAS,48,Fungicides,8,TF,F,0.088,0.016,5.5,5.5
"Cotton, upland",1993,TEXAS,48,Herbicides,8,TH,H,4.997,0.90036036036036,5.55,5.55
"Cotton, upland",1993,TEXAS,48,Insecticides,8,TI,I,1.327,0.239099099099099,5.55,5.55
"Cotton, upland",1993,TEXAS,48,"Other Pesticides",8,TO,O,1.581,0.284864864864865,5.55,5.55
"Cotton, upland",1992,TEXAS,48,"All Pesticides",8,TA,F,7.222,1.31309090909091,5.5,5.5
"Cotton, upland",1992,TEXAS,48,Fungicides,8,TF,F,0.088,0.016,5.5,5.5
"Cotton, upland",1992,TEXAS,48,Herbicides,8,TH,H,5.054,0.918909090909091,5.5,5.5
"Cotton, upland",1992,TEXAS,48,Insecticides,8,TI,I,1.567,0.284909090909091,5.5,5.5
"Cotton, upland",1992,TEXAS,48,"Other Pesticides",8,TO,O,0.513,0.0932727272727273,5.5,5.5
"Cotton, upland",1991,TEXAS,48,"All Pesticides",8,TA,I,10.342,1.6415873015873,6.3,6.3
"Cotton, upland",1991,TEXAS,48,Herbicides,8,TH,H,5.913,0.938571428571429,6.3,6.3
"Cotton, upland",1991,TEXAS,48,Insecticides,8,TI,I,1.787,0.283650793650794,6.3,6.3
"Cotton, upland",1991,TEXAS,48,"Other Pesticides",8,TO,O,2.642,0.419365079365079,6.3,6.3
Soybeans,2014,ARKANSAS,05,"All Pesticides",8,TA,H,7.901,2.4690625,3.2,3.2
Soybeans,2014,ARKANSAS,05,Fungicides,8,TF,F,0.132,0.04125,3.2,3.2
Soybeans,2014,ARKANSAS,05,Herbicides,8,TH,H,7.531,2.3534375,3.2,3.2
Soybeans,2014,ARKANSAS,05,Insecticides,8,TI,I,0.238,0.074375,3.2,3.2
Soybeans,2013,ARKANSAS,05,"All Pesticides",8,TA,H,7.901,2.4690625,3.2,3.2
Soybeans,2013,ARKANSAS,05,Fungicides,8,TF,F,0.132,0.04125,3.2,3.2
Soybeans,2013,ARKANSAS,05,Herbicides,8,TH,H,7.531,2.3534375,3.2,3.2
Soybeans,2013,ARKANSAS,05,Insecticides,8,TI,I,0.238,0.074375,3.2,3.2
Soybeans,2011,ARKANSAS,05,"All Pesticides",8,TA,F,4.439,1.42733118971061,3.11,3.11
Soybeans,2011,ARKANSAS,05,Fungicides,8,TF,F,0.026,0.00836012861736334,3.11,3.11
Soybeans,2011,ARKANSAS,05,Herbicides,8,TH,H,4.317,1.38810289389068,3.11,3.11
Soybeans,2011,ARKANSAS,05,Insecticides,8,TI,I,0.096,0.0308681672025723,3.11,3.11
Soybeans,2010,ARKANSAS,05,"All Pesticides",8,TA,F,4.439,1.42733118971061,3.11,3.11
Soybeans,2010,ARKANSAS,05,Fungicides,8,TF,F,0.026,0.00836012861736334,3.11,3.11
Soybeans,2010,ARKANSAS,05,Herbicides,8,TH,H,4.317,1.38810289389068,3.11,3.11
Soybeans,2010,ARKANSAS,05,Insecticides,8,TI,I,0.096,0.0308681672025723,3.11,3.11
Soybeans,2009,ARKANSAS,05,"All Pesticides",8,TA,F,4.439,1.42733118971061,3.11,3.11
Soybeans,2009,ARKANSAS,05,Fungicides,8,TF,F,0.026,0.00836012861736334,3.11,3.11
Soybeans,2009,ARKANSAS,05,Herbicides,8,TH,H,4.317,1.38810289389068,3.11,3.11
Soybeans,2009,ARKANSAS,05,Insecticides,8,TI,I,0.096,0.0308681672025723,3.11,3.11
Soybeans,2008,ARKANSAS,05,"All Pesticides",8,TA,F,4.439,1.42733118971061,3.11,3.11
Soybeans,2008,ARKANSAS,05,Fungicides,8,TF,F,0.026,0.00836012861736334,3.11,3.11
Soybeans,2008,ARKANSAS,05,Herbicides,8,TH,H,4.317,1.38810289389068,3.11,3.11
Soybeans,2008,ARKANSAS,05,Insecticides,8,TI,I,0.096,0.0308681672025723,3.11,3.11
Soybeans,2007,ARKANSAS,05,"All Pesticides",8,TA,F,4.439,1.42733118971061,3.11,3.11
Soybeans,2007,ARKANSAS,05,Fungicides,8,TF,F,0.026,0.00836012861736334,3.11,3.11
Soybeans,2007,ARKANSAS,05,Herbicides,8,TH,H,4.317,1.38810289389068,3.11,3.11
Soybeans,2007,ARKANSAS,05,Insecticides,8,TI,I,0.096,0.0308681672025723,3.11,3.11
Soybeans,2006,ARKANSAS,05,"All Pesticides",8,TA,F,4.439,1.42733118971061,3.11,3.11
Soybeans,2006,ARKANSAS,05,Fungicides,8,TF,F,0.026,0.00836012861736334,3.11,3.11
Soybeans,2006,ARKANSAS,05,Herbicides,8,TH,H,4.317,1.38810289389068,3.11,3.11
Soybeans,2006,ARKANSAS,05,Insecticides,8,TI,I,0.096,0.0308681672025723,3.11,3.11
Soybeans,2005,ARKANSAS,05,"All Pesticides",8,TA,F,4.517,1.49075907590759,3.03,3.03
Soybeans,2005,ARKANSAS,05,Fungicides,8,TF,F,0.021,0.00693069306930693,3.03,3.03
Soybeans,2005,ARKANSAS,05,Herbicides,8,TH,H,4.152,1.37029702970297,3.03,3.03
Soybeans,2005,ARKANSAS,05,Insecticides,8,TI,I,0.344,0.113531353135314,3.03,3.03
Soybeans,2004,ARKANSAS,05,"All Pesticides",8,TA,H,3.722,1.163125,3.2,3.2
Soybeans,2004,ARKANSAS,05,Fungicides,8,TF,F,0.023,0.0071875,3.2,3.2
Soybeans,2004,ARKANSAS,05,Herbicides,8,TH,H,3.642,1.138125,3.2,3.2
Soybeans,2004,ARKANSAS,05,Insecticides,8,TI,I,0.057,0.0178125,3.2,3.2
Soybeans,2003,ARKANSAS,05,"All Pesticides",8,TA,I,3.057,1.03627118644068,2.95,2.95
Soybeans,2003,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,2003,ARKANSAS,05,Herbicides,8,TH,H,2.945,0.998305084745763,2.95,2.95
Soybeans,2003,ARKANSAS,05,Insecticides,8,TI,I,0.112,0.0379661016949153,2.95,2.95
Soybeans,2002,ARKANSAS,05,"All Pesticides",8,TA,I,3.057,1.03627118644068,2.95,2.95
Soybeans,2002,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,2002,ARKANSAS,05,Herbicides,8,TH,H,2.945,0.998305084745763,2.95,2.95
Soybeans,2002,ARKANSAS,05,Insecticides,8,TI,I,0.112,0.0379661016949153,2.95,2.95
Soybeans,2001,ARKANSAS,05,"All Pesticides",8,TA,H,2.444,0.842758620689655,2.9,2.9
Soybeans,2001,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,2001,ARKANSAS,05,Herbicides,8,TH,H,2.44,0.841379310344828,2.9,2.9
Soybeans,2001,ARKANSAS,05,Insecticides,8,TI,I,0.004,0.00119402985074627,3.35,3.35
Soybeans,2000,ARKANSAS,05,"All Pesticides",8,TA,H,2.922,0.872238805970149,3.35,3.35
Soybeans,2000,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,2000,ARKANSAS,05,Herbicides,8,TH,H,2.918,0.871044776119403,3.35,3.35
Soybeans,2000,ARKANSAS,05,Insecticides,8,TI,I,0.004,0.00119402985074627,3.35,3.35
Soybeans,1999,ARKANSAS,05,"All Pesticides",8,TA,H,3.687,1.08441176470588,3.4,3.4
Soybeans,1999,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,1999,ARKANSAS,05,Herbicides,8,TH,H,3.67,1.07941176470588,3.4,3.4
Soybeans,1999,ARKANSAS,05,Insecticides,8,TI,I,0.017,0.005,3.4,3.4
Soybeans,1998,ARKANSAS,05,"All Pesticides",8,TA,I,3.095,0.871830985915493,3.55,3.55
Soybeans,1998,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,1998,ARKANSAS,05,Herbicides,8,TH,H,3.058,0.861408450704225,3.55,3.55
Soybeans,1998,ARKANSAS,05,Insecticides,8,TI,I,0.037,0.0104225352112676,3.55,3.55
Soybeans,1997,ARKANSAS,05,"All Pesticides",8,TA,H,5.083,1.39260273972603,3.65,3.65
Soybeans,1997,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,1997,ARKANSAS,05,Herbicides,8,TH,H,5.019,1.37506849315068,3.65,3.65
Soybeans,1997,ARKANSAS,05,Insecticides,8,TI,I,0.064,0.0185507246376812,3.45,3.45
Soybeans,1996,ARKANSAS,05,"All Pesticides",8,TA,I,4.555,1.32028985507246,3.45,3.45
Soybeans,1996,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,1996,ARKANSAS,05,Herbicides,8,TH,H,4.491,1.26507042253521,3.55,3.55
Soybeans,1996,ARKANSAS,05,Insecticides,8,TI,I,0.064,0.0185507246376812,3.45,3.45
Soybeans,1995,ARKANSAS,05,"All Pesticides",8,TA,H,3.628,1.05159420289855,3.45,3.45
Soybeans,1995,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,1995,ARKANSAS,05,Herbicides,8,TH,H,3.564,1.03304347826087,3.45,3.45
Soybeans,1995,ARKANSAS,05,Insecticides,8,TI,I,0.064,0.0185507246376812,3.45,3.45
Soybeans,1994,ARKANSAS,05,"All Pesticides",8,TA,I,4.533,1.31391304347826,3.45,3.45
Soybeans,1994,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,1994,ARKANSAS,05,Herbicides,8,TH,H,4.469,1.29536231884058,3.45,3.45
Soybeans,1994,ARKANSAS,05,Insecticides,8,TI,I,0.064,0.0185507246376812,3.45,3.45
Soybeans,1993,ARKANSAS,05,"All Pesticides",8,TA,I,3.662,1.01722222222222,3.6,3.6
Soybeans,1993,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,1993,ARKANSAS,05,Herbicides,8,TH,H,3.662,1.01722222222222,3.6,3.6
Soybeans,1993,ARKANSAS,05,Insecticides,8,TI,I,,,3.6,3.6
Soybeans,1992,ARKANSAS,05,"All Pesticides",8,TA,F,3.526,1.101875,3.2,3.2
Soybeans,1992,ARKANSAS,05,Fungicides,8,TF,F,,,3.2,3.2
Soybeans,1992,ARKANSAS,05,Herbicides,8,TH,H,3.526,1.101875,3.2,3.2
Soybeans,1991,ARKANSAS,05,"All Pesticides",8,TA,H,3.374,1.03815384615385,3.25,3.25
Soybeans,1991,ARKANSAS,05,Fungicides,8,TF,F,,,3.25,3.25
Soybeans,1991,ARKANSAS,05,Herbicides,8,TH,H,3.374,1.03815384615385,3.25,3.25
Soybeans,2014,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2014,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2013,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2013,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2012,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2012,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2011,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2011,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2010,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2010,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2009,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2009,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2008,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2008,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2007,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2007,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2006,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2006,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2005,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2005,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2004,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2004,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2003,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2003,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2002,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2002,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2001,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2001,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2000,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,2000,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.23,0.23
Soybeans,1999,DELAWARE,10,"All Pesticides",8,TA,H,0.314,1.36521739130435,0.23,0.23
Soybeans,1999,DELAWARE,10,Herbicides,8,TH,H,0.314,1.36521739130435,0.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment