Skip to content

Instantly share code, notes, and snippets.

@ramnathv
Last active August 29, 2015 13:56
Show Gist options
  • Save ramnathv/8969477 to your computer and use it in GitHub Desktop.
Save ramnathv/8969477 to your computer and use it in GitHub Desktop.

This is a rewrite of the mapping code used in this post by Diego Valle. It basically replaces all the boilerplate code with the ichoropleth function in rMaps, which wraps it, allowing easier reuse. Please follow the code from the original post to the get the shapefiles, topojson and data. My note will start with the dataset hom.

d1 <- ichoropleth(rate ~ name, data = hom, ncuts = 9, pal = 'YlOrRd', 
  animate = 'year',  map = 'states'
)
d1$set(
  geographyConfig = list(
   dataUrl = "mx_states.json"
  ),
 scope = 'states',
 setProjection = '#! function( element, options ) {
   var projection, path;
   projection = d3.geo.mercator()
    .center([-89, 21]).scale(element.offsetWidth)
    .translate([element.offsetWidth / 2, element.offsetHeight / 2]);
  
   path = d3.geo.path().projection( projection );
   return {path: path, projection: projection};
  } !#'
)
d1$save('index.html', cdn = T)

You can publish this chart without leaving the comfort of R using the following lines of code (assuming you have a github account)

# NOTE: DO NOT load rCharts before, since it interferes with rMaps currently.
library(rCharts)
post_gist(
  create_gist(c('index.html', 'mx_states.json')), 
  viewer = 'http://bl.ocks.org/'
)

Not bad for a few lines of R code!

<!doctype HTML>
<meta charset = 'utf-8'>
<html>
<head>
<script src='http://d3js.org/d3.v3.min.js' type='text/javascript'></script>
<script src='http://d3js.org/topojson.v1.min.js' type='text/javascript'></script>
<script src='http://datamaps.github.io/scripts/datamaps.all.min.js?v=1' type='text/javascript'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0/handlebars.min.js' type='text/javascript'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js' type='text/javascript'></script>
<style>
.rChart {
display: block;
margin-left: auto;
margin-right: auto;
width: 800px;
height: 400px;
}
</style>
</head>
<body ng-app ng-controller='rChartsCtrl'>
<div class='container'>
<input id='slider' type='range' min=1997 max=2013 ng-model='year' width=200>
<span ng-bind='year'></span>
<div id='chartf958539001db' class='rChart datamaps'></div>
</div>
<script>
function rChartsCtrl($scope){
$scope.year = 1997;
$scope.$watch('year', function(newYear){
mapchartf958539001db.updateChoropleth(chartParams.newData[newYear]);
})
}
</script>
<script id='popup-template' type='text/x-handlebars-template'>
</script>
<script>
var chartParams = {
"dom": "chartf958539001db",
"width": 800,
"height": 400,
"scope": "states",
"fills": {
"(0,4.08]": "#FFFFCC",
"(4.08,5.56]": "#FFEDA0",
"(5.56,7.09]": "#FED976",
"(7.09,8.42]": "#FEB24C",
"(8.42,11.1]": "#FD8D3C",
"(11.1,14.9]": "#FC4E2A",
"(14.9,19.1]": "#E31A1C",
"(19.1,26.9]": "#BD0026",
"(26.9,111]": "#800026"
},
"legend": true,
"labels": true,
"bodyattrs": "ng-app ng-controller='rChartsCtrl'",
"newData": {
"1997": {
"Aguascalientes": {
"state_code": 1,
"year": 1997,
"type": "DOLOSOS",
"total": 355,
"population": 9.5813e+05,
"rate": 37.051,
"name": "Aguascalientes",
"fillKey": "(26.9,111]"
},
"Baja California": {
"state_code": 2,
"year": 1997,
"type": "DOLOSOS",
"total": 492,
"population": 2.3097e+06,
"rate": 21.301,
"name": "Baja California",
"fillKey": "(19.1,26.9]"
},
"Baja California Sur": {
"state_code": 3,
"year": 1997,
"type": "DOLOSOS",
"total": 60,
"population": 4.2722e+05,
"rate": 14.044,
"name": "Baja California Sur",
"fillKey": "(11.1,14.9]"
},
"Campeche": {
"state_code": 4,
"year": 1997,
"type": "DOLOSOS",
"total": 130,
"population": 6.5998e+05,
"rate": 19.698,
"name": "Campeche",
"fillKey": "(19.1,26.9]"
},
"Coahuila de Zaragoza": {
"state_code": 5,
"year": 1997,
"type": "DOLOSOS",
"total": 175,
"population": 2.2779e+06,
"rate": 7.6826,
"name": "Coahuila de Zaragoza",
"fillKey": "(7.09,8.42]"
},
"Colima": {
"state_code": 6,
"year": 1997,
"type": "DOLOSOS",
"total": 99,
"population": 5.322e+05,
"rate": 18.602,
"name": "Colima",
"fillKey": "(14.9,19.1]"
},
"Chiapas": {
"state_code": 7,
"year": 1997,
"type": "DOLOSOS",
"total": 1357,
"population": 3.9109e+06,
"rate": 34.698,
"name": "Chiapas",
"fillKey": "(26.9,111]"
},
"Chihuahua": {
"state_code": 8,
"year": 1997,
"type": "DOLOSOS",
"total": 677,
"population": 2.8132e+06,
"rate": 24.065,
"name": "Chihuahua",
"fillKey": "(19.1,26.9]"
},
"Distrito Federal": {
"state_code": 9,
"year": 1997,
"type": "DOLOSOS",
"total": 977,
"population": 8.8957e+06,
"rate": 10.983,
"name": "Distrito Federal",
"fillKey": "(8.42,11.1]"
},
"Durango": {
"state_code": 10,
"year": 1997,
"type": "DOLOSOS",
"total": 61,
"population": 1.4733e+06,
"rate": 4.1405,
"name": "Durango",
"fillKey": "(4.08,5.56]"
},
"Guanajuato": {
"state_code": 11,
"year": 1997,
"type": "DOLOSOS",
"total": 567,
"population": 5.0356e+06,
"rate": 11.26,
"name": "Guanajuato",
"fillKey": "(11.1,14.9]"
},
"Guerrero": {
"state_code": 12,
"year": 1997,
"type": "DOLOSOS",
"total": 1273,
"population": 3.1888e+06,
"rate": 39.92,
"name": "Guerrero",
"fillKey": "(26.9,111]"
},
"Hidalgo": {
"state_code": 13,
"year": 1997,
"type": "DOLOSOS",
"total": 360,
"population": 2.344e+06,
"rate": 15.358,
"name": "Hidalgo",
"fillKey": "(14.9,19.1]"
},
"Jalisco": {
"state_code": 14,
"year": 1997,
"type": "DOLOSOS",
"total": 600,
"population": 6.3405e+06,
"rate": 9.463,
"name": "Jalisco",
"fillKey": "(8.42,11.1]"
},
"México": {
"state_code": 15,
"year": 1997,
"type": "DOLOSOS",
"total": 3037,
"population": 1.2165e+07,
"rate": 24.965,
"name": "México",
"fillKey": "(19.1,26.9]"
},
"Michoacán de Ocampo": {
"state_code": 16,
"year": 1997,
"type": "DOLOSOS",
"total": 757,
"population": 4.1524e+06,
"rate": 18.23,
"name": "Michoacán de Ocampo",
"fillKey": "(14.9,19.1]"
},
"Morelos": {
"state_code": 17,
"year": 1997,
"type": "DOLOSOS",
"total": 178,
"population": 1.5514e+06,
"rate": 11.473,
"name": "Morelos",
"fillKey": "(11.1,14.9]"
},
"Nayarit": {
"state_code": 18,
"year": 1997,
"type": "DOLOSOS",
"total": 132,
"population": 9.1852e+05,
"rate": 14.371,
"name": "Nayarit",
"fillKey": "(11.1,14.9]"
},
"Nuevo León": {
"state_code": 19,
"year": 1997,
"type": "DOLOSOS",
"total": 163,
"population": 3.7381e+06,
"rate": 4.3605,
"name": "Nuevo León",
"fillKey": "(4.08,5.56]"
},
"Oaxaca": {
"state_code": 20,
"year": 1997,
"type": "DOLOSOS",
"total": 788,
"population": 3.5971e+06,
"rate": 21.907,
"name": "Oaxaca",
"fillKey": "(19.1,26.9]"
},
"Puebla": {
"state_code": 21,
"year": 1997,
"type": "DOLOSOS",
"total": 729,
"population": 5.045e+06,
"rate": 14.45,
"name": "Puebla",
"fillKey": "(11.1,14.9]"
},
"Querétaro": {
"state_code": 22,
"year": 1997,
"type": "DOLOSOS",
"total": 234,
"population": 1.4665e+06,
"rate": 15.957,
"name": "Querétaro",
"fillKey": "(14.9,19.1]"
},
"Quintana Roo": {
"state_code": 23,
"year": 1997,
"type": "DOLOSOS",
"total": 335,
"population": 8.2669e+05,
"rate": 40.523,
"name": "Quintana Roo",
"fillKey": "(26.9,111]"
},
"San Luis Potosí": {
"state_code": 24,
"year": 1997,
"type": "DOLOSOS",
"total": 301,
"population": 2.3534e+06,
"rate": 12.79,
"name": "San Luis Potosí",
"fillKey": "(11.1,14.9]"
},
"Sinaloa": {
"state_code": 25,
"year": 1997,
"type": "DOLOSOS",
"total": 669,
"population": 2.4524e+06,
"rate": 27.279,
"name": "Sinaloa",
"fillKey": "(26.9,111]"
},
"Sonora": {
"state_code": 26,
"year": 1997,
"type": "DOLOSOS",
"total": 526,
"population": 2.1622e+06,
"rate": 24.327,
"name": "Sonora",
"fillKey": "(19.1,26.9]"
},
"Tabasco": {
"state_code": 27,
"year": 1997,
"type": "DOLOSOS",
"total": 353,
"population": 1.8838e+06,
"rate": 18.739,
"name": "Tabasco",
"fillKey": "(14.9,19.1]"
},
"Tamaulipas": {
"state_code": 28,
"year": 1997,
"type": "DOLOSOS",
"total": 473,
"population": 2.618e+06,
"rate": 18.067,
"name": "Tamaulipas",
"fillKey": "(14.9,19.1]"
},
"Tlaxcala": {
"state_code": 29,
"year": 1997,
"type": "DOLOSOS",
"total": 63,
"population": 9.5452e+05,
"rate": 6.6002,
"name": "Tlaxcala",
"fillKey": "(5.56,7.09]"
},
"Veracruz de Ignacio de la Llave": {
"state_code": 30,
"year": 1997,
"type": "DOLOSOS",
"total": 722,
"population": 7.1298e+06,
"rate": 10.126,
"name": "Veracruz de Ignacio de la Llave",
"fillKey": "(8.42,11.1]"
},
"Yucatán": {
"state_code": 31,
"year": 1997,
"type": "DOLOSOS",
"total": 110,
"population": 1.6431e+06,
"rate": 6.6946,
"name": "Yucatán",
"fillKey": "(5.56,7.09]"
},
"Zacatecas": {
"state_code": 32,
"year": 1997,
"type": "DOLOSOS",
"total": 113,
"population": 1.4278e+06,
"rate": 7.9141,
"name": "Zacatecas",
"fillKey": "(7.09,8.42]"
}
},
"1998": {
"Aguascalientes": {
"state_code": 1,
"year": 1998,
"type": "DOLOSOS",
"total": 66,
"population": 9.7558e+05,
"rate": 6.7652,
"name": "Aguascalientes",
"fillKey": "(5.56,7.09]"
},
"Baja California": {
"state_code": 2,
"year": 1998,
"type": "DOLOSOS",
"total": 292,
"population": 2.3911e+06,
"rate": 12.212,
"name": "Baja California",
"fillKey": "(11.1,14.9]"
},
"Baja California Sur": {
"state_code": 3,
"year": 1998,
"type": "DOLOSOS",
"total": 18,
"population": 4.4049e+05,
"rate": 4.0864,
"name": "Baja California Sur",
"fillKey": "(4.08,5.56]"
},
"Campeche": {
"state_code": 4,
"year": 1998,
"type": "DOLOSOS",
"total": 117,
"population": 6.7419e+05,
"rate": 17.354,
"name": "Campeche",
"fillKey": "(14.9,19.1]"
},
"Coahuila de Zaragoza": {
"state_code": 5,
"year": 1998,
"type": "DOLOSOS",
"total": 165,
"population": 2.317e+06,
"rate": 7.1212,
"name": "Coahuila de Zaragoza",
"fillKey": "(7.09,8.42]"
},
"Colima": {
"state_code": 6,
"year": 1998,
"type": "DOLOSOS",
"total": 89,
"population": 5.3869e+05,
"rate": 16.522,
"name": "Colima",
"fillKey": "(14.9,19.1]"
},
"Chiapas": {
"state_code": 7,
"year": 1998,
"type": "DOLOSOS",
"total": 1399,
"population": 3.9983e+06,
"rate": 34.99,
"name": "Chiapas",
"fillKey": "(26.9,111]"
},
"Chihuahua": {
"state_code": 8,
"year": 1998,
"type": "DOLOSOS",
"total": 584,
"population": 2.8709e+06,
"rate": 20.342,
"name": "Chihuahua",
"fillKey": "(19.1,26.9]"
},
"Distrito Federal": {
"state_code": 9,
"year": 1998,
"type": "DOLOSOS",
"total": 947,
"population": 8.9133e+06,
"rate": 10.625,
"name": "Distrito Federal",
"fillKey": "(8.42,11.1]"
},
"Durango": {
"state_code": 10,
"year": 1998,
"type": "DOLOSOS",
"total": 134,
"population": 1.4822e+06,
"rate": 9.0408,
"name": "Durango",
"fillKey": "(8.42,11.1]"
},
"Guanajuato": {
"state_code": 11,
"year": 1998,
"type": "DOLOSOS",
"total": 230,
"population": 5.0763e+06,
"rate": 4.5308,
"name": "Guanajuato",
"fillKey": "(4.08,5.56]"
},
"Guerrero": {
"state_code": 12,
"year": 1998,
"type": "DOLOSOS",
"total": 1306,
"population": 3.2043e+06,
"rate": 40.757,
"name": "Guerrero",
"fillKey": "(26.9,111]"
},
"Hidalgo": {
"state_code": 13,
"year": 1998,
"type": "DOLOSOS",
"total": 250,
"population": 2.3601e+06,
"rate": 10.593,
"name": "Hidalgo",
"fillKey": "(8.42,11.1]"
},
"Jalisco": {
"state_code": 14,
"year": 1998,
"type": "DOLOSOS",
"total": 604,
"population": 6.4022e+06,
"rate": 9.4342,
"name": "Jalisco",
"fillKey": "(8.42,11.1]"
},
"México": {
"state_code": 15,
"year": 1998,
"type": "DOLOSOS",
"total": 2221,
"population": 1.2433e+07,
"rate": 17.863,
"name": "México",
"fillKey": "(14.9,19.1]"
},
"Michoacán de Ocampo": {
"state_code": 16,
"year": 1998,
"type": "DOLOSOS",
"total": 1022,
"population": 4.1591e+06,
"rate": 24.572,
"name": "Michoacán de Ocampo",
"fillKey": "(19.1,26.9]"
},
"Morelos": {
"state_code": 17,
"year": 1998,
"type": "DOLOSOS",
"total": 216,
"population": 1.5664e+06,
"rate": 13.79,
"name": "Morelos",
"fillKey": "(11.1,14.9]"
},
"Nayarit": {
"state_code": 18,
"year": 1998,
"type": "DOLOSOS",
"total": 165,
"population": 9.2522e+05,
"rate": 17.834,
"name": "Nayarit",
"fillKey": "(14.9,19.1]"
},
"Nuevo León": {
"state_code": 19,
"year": 1998,
"type": "DOLOSOS",
"total": 160,
"population": 3.8095e+06,
"rate": 4.2,
"name": "Nuevo León",
"fillKey": "(4.08,5.56]"
},
"Oaxaca": {
"state_code": 20,
"year": 1998,
"type": "DOLOSOS",
"total": 14,
"population": 3.6252e+06,
"rate": 0.38618,
"name": "Oaxaca",
"fillKey": "(0,4.08]"
},
"Puebla": {
"state_code": 21,
"year": 1998,
"type": "DOLOSOS",
"total": 675,
"population": 5.1168e+06,
"rate": 13.192,
"name": "Puebla",
"fillKey": "(11.1,14.9]"
},
"Querétaro": {
"state_code": 22,
"year": 1998,
"type": "DOLOSOS",
"total": 39,
"population": 1.4969e+06,
"rate": 2.6054,
"name": "Querétaro",
"fillKey": "(0,4.08]"
},
"Quintana Roo": {
"state_code": 23,
"year": 1998,
"type": "DOLOSOS",
"total": 117,
"population": 8.6412e+05,
"rate": 13.54,
"name": "Quintana Roo",
"fillKey": "(11.1,14.9]"
},
"San Luis Potosí": {
"state_code": 24,
"year": 1998,
"type": "DOLOSOS",
"total": 297,
"population": 2.3677e+06,
"rate": 12.544,
"name": "San Luis Potosí",
"fillKey": "(11.1,14.9]"
},
"Sinaloa": {
"state_code": 25,
"year": 1998,
"type": "DOLOSOS",
"total": 643,
"population": 2.482e+06,
"rate": 25.906,
"name": "Sinaloa",
"fillKey": "(19.1,26.9]"
},
"Sonora": {
"state_code": 26,
"year": 1998,
"type": "DOLOSOS",
"total": 555,
"population": 2.2055e+06,
"rate": 25.164,
"name": "Sonora",
"fillKey": "(19.1,26.9]"
},
"Tabasco": {
"state_code": 27,
"year": 1998,
"type": "DOLOSOS",
"total": 368,
"population": 1.9159e+06,
"rate": 19.208,
"name": "Tabasco",
"fillKey": "(19.1,26.9]"
},
"Tamaulipas": {
"state_code": 28,
"year": 1998,
"type": "DOLOSOS",
"total": 428,
"population": 2.6743e+06,
"rate": 16.004,
"name": "Tamaulipas",
"fillKey": "(14.9,19.1]"
},
"Tlaxcala": {
"state_code": 29,
"year": 1998,
"type": "DOLOSOS",
"total": 49,
"population": 9.7408e+05,
"rate": 5.0304,
"name": "Tlaxcala",
"fillKey": "(4.08,5.56]"
},
"Veracruz de Ignacio de la Llave": {
"state_code": 30,
"year": 1998,
"type": "DOLOSOS",
"total": 707,
"population": 7.1743e+06,
"rate": 9.8546,
"name": "Veracruz de Ignacio de la Llave",
"fillKey": "(8.42,11.1]"
},
"Yucatán": {
"state_code": 31,
"year": 1998,
"type": "DOLOSOS",
"total": 23,
"population": 1.6698e+06,
"rate": 1.3774,
"name": "Yucatán",
"fillKey": "(0,4.08]"
},
"Zacatecas": {
"state_code": 32,
"year": 1998,
"type": "DOLOSOS",
"total": 316,
"population": 1.4253e+06,
"rate": 22.171,
"name": "Zacatecas",
"fillKey": "(19.1,26.9]"
}
},
"1999": {
"Aguascalientes": {
"state_code": 1,
"year": 1999,
"type": "DOLOSOS",
"total": 27,
"population": 9.9251e+05,
"rate": 2.7204,
"name": "Aguascalientes",
"fillKey": "(0,4.08]"
},
"Baja California": {
"state_code": 2,
"year": 1999,
"type": "DOLOSOS",
"total": 657,
"population": 2.4725e+06,
"rate": 26.573,
"name": "Baja California",
"fillKey": "(19.1,26.9]"
},
"Baja California Sur": {
"state_code": 3,
"year": 1999,
"type": "DOLOSOS",
"total": 31,
"population": 4.5385e+05,
"rate": 6.8304,
"name": "Baja California Sur",
"fillKey": "(5.56,7.09]"
},
"Campeche": {
"state_code": 4,
"year": 1999,
"type": "DOLOSOS",
"total": 78,
"population": 6.8793e+05,
"rate": 11.338,
"name": "Campeche",
"fillKey": "(11.1,14.9]"
},
"Coahuila de Zaragoza": {
"state_code": 5,
"year": 1999,
"type": "DOLOSOS",
"total": 139,
"population": 2.3561e+06,
"rate": 5.8996,
"name": "Coahuila de Zaragoza",
"fillKey": "(5.56,7.09]"
},
"Colima": {
"state_code": 6,
"year": 1999,
"type": "DOLOSOS",
"total": 53,
"population": 5.4446e+05,
"rate": 9.7344,
"name": "Colima",
"fillKey": "(8.42,11.1]"
},
"Chiapas": {
"state_code": 7,
"year": 1999,
"type": "DOLOSOS",
"total": 1452,
"population": 4.086e+06,
"rate": 35.536,
"name": "Chiapas",
"fillKey": "(26.9,111]"
},
"Chihuahua": {
"state_code": 8,
"year": 1999,
"type": "DOLOSOS",
"total": 425,
"population": 2.9298e+06,
"rate": 14.506,
"name": "Chihuahua",
"fillKey": "(11.1,14.9]"
},
"Distrito Federal": {
"state_code": 9,
"year": 1999,
"type": "DOLOSOS",
"total": 880,
"population": 8.929e+06,
"rate": 9.8555,
"name": "Distrito Federal",
"fillKey": "(8.42,11.1]"
},
"Durango": {
"state_code": 10,
"year": 1999,
"type": "DOLOSOS",
"total": 291,
"population": 1.489e+06,
"rate": 19.543,
"name": "Durango",
"fillKey": "(19.1,26.9]"
},
"Guanajuato": {
"state_code": 11,
"year": 1999,
"type": "DOLOSOS",
"total": 259,
"population": 5.1143e+06,
"rate": 5.0642,
"name": "Guanajuato",
"fillKey": "(4.08,5.56]"
},
"Guerrero": {
"state_code": 12,
"year": 1999,
"type": "DOLOSOS",
"total": 1242,
"population": 3.2162e+06,
"rate": 38.617,
"name": "Guerrero",
"fillKey": "(26.9,111]"
},
"Hidalgo": {
"state_code": 13,
"year": 1999,
"type": "DOLOSOS",
"total": 199,
"population": 2.3756e+06,
"rate": 8.3768,
"name": "Hidalgo",
"fillKey": "(7.09,8.42]"
},
"Jalisco": {
"state_code": 14,
"year": 1999,
"type": "DOLOSOS",
"total": 545,
"population": 6.4558e+06,
"rate": 8.442,
"name": "Jalisco",
"fillKey": "(8.42,11.1]"
},
"México": {
"state_code": 15,
"year": 1999,
"type": "DOLOSOS",
"total": 2966,
"population": 1.2689e+07,
"rate": 23.374,
"name": "México",
"fillKey": "(19.1,26.9]"
},
"Michoacán de Ocampo": {
"state_code": 16,
"year": 1999,
"type": "DOLOSOS",
"total": 575,
"population": 4.1593e+06,
"rate": 13.824,
"name": "Michoacán de Ocampo",
"fillKey": "(11.1,14.9]"
},
"Morelos": {
"state_code": 17,
"year": 1999,
"type": "DOLOSOS",
"total": 344,
"population": 1.5786e+06,
"rate": 21.791,
"name": "Morelos",
"fillKey": "(19.1,26.9]"
},
"Nayarit": {
"state_code": 18,
"year": 1999,
"type": "DOLOSOS",
"total": 146,
"population": 9.3054e+05,
"rate": 15.69,
"name": "Nayarit",
"fillKey": "(14.9,19.1]"
},
"Nuevo León": {
"state_code": 19,
"year": 1999,
"type": "DOLOSOS",
"total": 131,
"population": 3.8803e+06,
"rate": 3.3761,
"name": "Nuevo León",
"fillKey": "(0,4.08]"
},
"Oaxaca": {
"state_code": 20,
"year": 1999,
"type": "DOLOSOS",
"total": 823,
"population": 3.6541e+06,
"rate": 22.523,
"name": "Oaxaca",
"fillKey": "(19.1,26.9]"
},
"Puebla": {
"state_code": 21,
"year": 1999,
"type": "DOLOSOS",
"total": 575,
"population": 5.1896e+06,
"rate": 11.08,
"name": "Puebla",
"fillKey": "(11.1,14.9]"
},
"Querétaro": {
"state_code": 22,
"year": 1999,
"type": "DOLOSOS",
"total": 55,
"population": 1.5277e+06,
"rate": 3.6001,
"name": "Querétaro",
"fillKey": "(0,4.08]"
},
"Quintana Roo": {
"state_code": 23,
"year": 1999,
"type": "DOLOSOS",
"total": 123,
"population": 9.0233e+05,
"rate": 13.631,
"name": "Quintana Roo",
"fillKey": "(11.1,14.9]"
},
"San Luis Potosí": {
"state_code": 24,
"year": 1999,
"type": "DOLOSOS",
"total": 414,
"population": 2.3789e+06,
"rate": 17.403,
"name": "San Luis Potosí",
"fillKey": "(14.9,19.1]"
},
"Sinaloa": {
"state_code": 25,
"year": 1999,
"type": "DOLOSOS",
"total": 564,
"population": 2.5097e+06,
"rate": 22.473,
"name": "Sinaloa",
"fillKey": "(19.1,26.9]"
},
"Sonora": {
"state_code": 26,
"year": 1999,
"type": "DOLOSOS",
"total": 292,
"population": 2.2494e+06,
"rate": 12.981,
"name": "Sonora",
"fillKey": "(11.1,14.9]"
},
"Tabasco": {
"state_code": 27,
"year": 1999,
"type": "DOLOSOS",
"total": 229,
"population": 1.9472e+06,
"rate": 11.76,
"name": "Tabasco",
"fillKey": "(11.1,14.9]"
},
"Tamaulipas": {
"state_code": 28,
"year": 1999,
"type": "DOLOSOS",
"total": 253,
"population": 2.7324e+06,
"rate": 9.2592,
"name": "Tamaulipas",
"fillKey": "(8.42,11.1]"
},
"Tlaxcala": {
"state_code": 29,
"year": 1999,
"type": "DOLOSOS",
"total": 163,
"population": 9.942e+05,
"rate": 16.395,
"name": "Tlaxcala",
"fillKey": "(14.9,19.1]"
},
"Veracruz de Ignacio de la Llave": {
"state_code": 30,
"year": 1999,
"type": "DOLOSOS",
"total": 590,
"population": 7.2089e+06,
"rate": 8.1844,
"name": "Veracruz de Ignacio de la Llave",
"fillKey": "(7.09,8.42]"
},
"Yucatán": {
"state_code": 31,
"year": 1999,
"type": "DOLOSOS",
"total": 8,
"population": 1.6965e+06,
"rate": 0.47155,
"name": "Yucatán",
"fillKey": "(0,4.08]"
},
"Zacatecas": {
"state_code": 32,
"year": 1999,
"type": "DOLOSOS",
"total": 90,
"population": 1.4201e+06,
"rate": 6.3375,
"name": "Zacatecas",
"fillKey": "(5.56,7.09]"
}
},
"2000": {
"Aguascalientes": {
"state_code": 1,
"year": 2000,
"type": "DOLOSOS",
"total": 14,
"population": 1.0092e+06,
"rate": 1.3872,
"name": "Aguascalientes",
"fillKey": "(0,4.08]"
},
"Baja California": {
"state_code": 2,
"year": 2000,
"type": "DOLOSOS",
"total": 460,
"population": 2.5527e+06,
"rate": 18.02,
"name": "Baja California",
"fillKey": "(14.9,19.1]"
},
"Baja California Sur": {
"state_code": 3,
"year": 2000,
"type": "DOLOSOS",
"total": 31,
"population": 4.6709e+05,
"rate": 6.6368,
"name": "Baja California Sur",
"fillKey": "(5.56,7.09]"
},
"Campeche": {
"state_code": 4,
"year": 2000,
"type": "DOLOSOS",
"total": 55,
"population": 7.0126e+05,
"rate": 7.843,
"name": "Campeche",
"fillKey": "(7.09,8.42]"
},
"Coahuila de Zaragoza": {
"state_code": 5,
"year": 2000,
"type": "DOLOSOS",
"total": 113,
"population": 2.3954e+06,
"rate": 4.7173,
"name": "Coahuila de Zaragoza",
"fillKey": "(4.08,5.56]"
},
"Colima": {
"state_code": 6,
"year": 2000,
"type": "DOLOSOS",
"total": 45,
"population": 5.5077e+05,
"rate": 8.1704,
"name": "Colima",
"fillKey": "(7.09,8.42]"
},
"Chiapas": {
"state_code": 7,
"year": 2000,
"type": "DOLOSOS",
"total": 1270,
"population": 4.1673e+06,
"rate": 30.475,
"name": "Chiapas",
"fillKey": "(26.9,111]"
},
"Chihuahua": {
"state_code": 8,
"year": 2000,
"type": "DOLOSOS",
"total": 437,
"population": 2.9904e+06,
"rate": 14.613,
"name": "Chihuahua",
"fillKey": "(11.1,14.9]"
},
"Distrito Federal": {
"state_code": 9,
"year": 2000,
"type": "DOLOSOS",
"total": 709,
"population": 8.9456e+06,
"rate": 7.9257,
"name": "Distrito Federal",
"fillKey": "(7.09,8.42]"
},
"Durango": {
"state_code": 10,
"year": 2000,
"type": "DOLOSOS",
"total": 268,
"population": 1.4987e+06,
"rate": 17.882,
"name": "Durango",
"fillKey": "(14.9,19.1]"
},
"Guanajuato": {
"state_code": 11,
"year": 2000,
"type": "DOLOSOS",
"total": 219,
"population": 5.1446e+06,
"rate": 4.2569,
"name": "Guanajuato",
"fillKey": "(4.08,5.56]"
},
"Guerrero": {
"state_code": 12,
"year": 2000,
"type": "DOLOSOS",
"total": 1399,
"population": 3.2274e+06,
"rate": 43.348,
"name": "Guerrero",
"fillKey": "(26.9,111]"
},
"Hidalgo": {
"state_code": 13,
"year": 2000,
"type": "DOLOSOS",
"total": 115,
"population": 2.3913e+06,
"rate": 4.809,
"name": "Hidalgo",
"fillKey": "(4.08,5.56]"
},
"Jalisco": {
"state_code": 14,
"year": 2000,
"type": "DOLOSOS",
"total": 486,
"population": 6.5186e+06,
"rate": 7.4556,
"name": "Jalisco",
"fillKey": "(7.09,8.42]"
},
"México": {
"state_code": 15,
"year": 2000,
"type": "DOLOSOS",
"total": 2726,
"population": 1.2945e+07,
"rate": 21.059,
"name": "México",
"fillKey": "(19.1,26.9]"
},
"Michoacán de Ocampo": {
"state_code": 16,
"year": 2000,
"type": "DOLOSOS",
"total": 487,
"population": 4.164e+06,
"rate": 11.695,
"name": "Michoacán de Ocampo",
"fillKey": "(11.1,14.9]"
},
"Morelos": {
"state_code": 17,
"year": 2000,
"type": "DOLOSOS",
"total": 352,
"population": 1.5933e+06,
"rate": 22.092,
"name": "Morelos",
"fillKey": "(19.1,26.9]"
},
"Nayarit": {
"state_code": 18,
"year": 2000,
"type": "DOLOSOS",
"total": 121,
"population": 9.3747e+05,
"rate": 12.907,
"name": "Nayarit",
"fillKey": "(11.1,14.9]"
},
"Nuevo León": {
"state_code": 19,
"year": 2000,
"type": "DOLOSOS",
"total": 123,
"population": 3.9536e+06,
"rate": 3.1111,
"name": "Nuevo León",
"fillKey": "(0,4.08]"
},
"Oaxaca": {
"state_code": 20,
"year": 2000,
"type": "DOLOSOS",
"total": 1292,
"population": 3.6706e+06,
"rate": 35.198,
"name": "Oaxaca",
"fillKey": "(26.9,111]"
},
"Puebla": {
"state_code": 21,
"year": 2000,
"type": "DOLOSOS",
"total": 573,
"population": 5.2511e+06,
"rate": 10.912,
"name": "Puebla",
"fillKey": "(8.42,11.1]"
},
"Querétaro": {
"state_code": 22,
"year": 2000,
"type": "DOLOSOS",
"total": 62,
"population": 1.5552e+06,
"rate": 3.9865,
"name": "Querétaro",
"fillKey": "(0,4.08]"
},
"Quintana Roo": {
"state_code": 23,
"year": 2000,
"type": "DOLOSOS",
"total": 245,
"population": 9.4034e+05,
"rate": 26.054,
"name": "Quintana Roo",
"fillKey": "(19.1,26.9]"
},
"San Luis Potosí": {
"state_code": 24,
"year": 2000,
"type": "DOLOSOS",
"total": 254,
"population": 2.3915e+06,
"rate": 10.621,
"name": "San Luis Potosí",
"fillKey": "(8.42,11.1]"
},
"Sinaloa": {
"state_code": 25,
"year": 2000,
"type": "DOLOSOS",
"total": 501,
"population": 2.5397e+06,
"rate": 19.727,
"name": "Sinaloa",
"fillKey": "(19.1,26.9]"
},
"Sonora": {
"state_code": 26,
"year": 2000,
"type": "DOLOSOS",
"total": 194,
"population": 2.2915e+06,
"rate": 8.466,
"name": "Sonora",
"fillKey": "(8.42,11.1]"
},
"Tabasco": {
"state_code": 27,
"year": 2000,
"type": "DOLOSOS",
"total": 210,
"population": 1.977e+06,
"rate": 10.622,
"name": "Tabasco",
"fillKey": "(8.42,11.1]"
},
"Tamaulipas": {
"state_code": 28,
"year": 2000,
"type": "DOLOSOS",
"total": 221,
"population": 2.7932e+06,
"rate": 7.912,
"name": "Tamaulipas",
"fillKey": "(7.09,8.42]"
},
"Tlaxcala": {
"state_code": 29,
"year": 2000,
"type": "DOLOSOS",
"total": 280,
"population": 1.0122e+06,
"rate": 27.664,
"name": "Tlaxcala",
"fillKey": "(26.9,111]"
},
"Veracruz de Ignacio de la Llave": {
"state_code": 30,
"year": 2000,
"type": "DOLOSOS",
"total": 465,
"population": 7.2339e+06,
"rate": 6.4281,
"name": "Veracruz de Ignacio de la Llave",
"fillKey": "(5.56,7.09]"
},
"Yucatán": {
"state_code": 31,
"year": 2000,
"type": "DOLOSOS",
"total": 26,
"population": 1.7222e+06,
"rate": 1.5097,
"name": "Yucatán",
"fillKey": "(0,4.08]"
},
"Zacatecas": {
"state_code": 32,
"year": 2000,
"type": "DOLOSOS",
"total": 96,
"population": 1.4185e+06,
"rate": 6.7675,
"name": "Zacatecas",
"fillKey": "(5.56,7.09]"
}
},
"2001": {
"Aguascalientes": {
"state_code": 1,
"year": 2001,
"type": "DOLOSOS",
"total": 22,
"population": 1.0264e+06,
"rate": 2.1433,
"name": "Aguascalientes",
"fillKey": "(0,4.08]"
},
"Baja California": {
"state_code": 2,
"year": 2001,
"type": "DOLOSOS",
"total": 456,
"population": 2.6303e+06,
"rate": 17.336,
"name": "Baja California",
"fillKey": "(14.9,19.1]"
},
"Baja California Sur": {
"state_code": 3,
"year": 2001,
"type": "DOLOSOS",
"total": 25,
"population": 4.81e+05,
"rate": 5.1976,
"name": "Baja California Sur",
"fillKey": "(4.08,5.56]"
},
"Campeche": {
"state_code": 4,
"year": 2001,
"type": "DOLOSOS",
"total": 52,
"population": 7.146e+05,
"rate": 7.2768,
"name": "Campeche",
"fillKey": "(7.09,8.42]"
},
"Coahuila de Zaragoza": {
"state_code": 5,
"year": 2001,
"type": "DOLOSOS",
"total": 118,
"population": 2.4349e+06,
"rate": 4.8462,
"name": "Coahuila de Zaragoza",
"fillKey": "(4.08,5.56]"
},
"Colima": {
"state_code": 6,
"year": 2001,
"type": "DOLOSOS",
"total": 56,
"population": 5.584e+05,
"rate": 10.029,
"name": "Colima",
"fillKey": "(8.42,11.1]"
},
"Chiapas": {
"state_code": 7,
"year": 2001,
"type": "DOLOSOS",
"total": 1252,
"population": 4.2436e+06,
"rate": 29.504,
"name": "Chiapas",
"fillKey": "(26.9,111]"
},
"Chihuahua": {
"state_code": 8,
"year": 2001,
"type": "DOLOSOS",
"total": 480,
"population": 3.051e+06,
"rate": 15.733,
"name": "Chihuahua",
"fillKey": "(14.9,19.1]"
},
"Distrito Federal": {
"state_code": 9,
"year": 2001,
"type": "DOLOSOS",
"total": 807,
"population": 8.9613e+06,
"rate": 9.0054,
"name": "Distrito Federal",
"fillKey": "(8.42,11.1]"
},
"Durango": {
"state_code": 10,
"year": 2001,
"type": "DOLOSOS",
"total": 321,
"population": 1.5124e+06,
"rate": 21.225,
"name": "Durango",
"fillKey": "(19.1,26.9]"
},
"Guanajuato": {
"state_code": 11,
"year": 2001,
"type": "DOLOSOS",
"total": 233,
"population": 5.1733e+06,
"rate": 4.5039,
"name": "Guanajuato",
"fillKey": "(4.08,5.56]"
},
"Guerrero": {
"state_code": 12,
"year": 2001,
"type": "DOLOSOS",
"total": 1255,
"population": 3.2416e+06,
"rate": 38.715,
"name": "Guerrero",
"fillKey": "(26.9,111]"
},
"Hidalgo": {
"state_code": 13,
"year": 2001,
"type": "DOLOSOS",
"total": 148,
"population": 2.4099e+06,
"rate": 6.1413,
"name": "Hidalgo",
"fillKey": "(5.56,7.09]"
},
"Jalisco": {
"state_code": 14,
"year": 2001,
"type": "DOLOSOS",
"total": 488,
"population": 6.5957e+06,
"rate": 7.3987,
"name": "Jalisco",
"fillKey": "(7.09,8.42]"
},
"México": {
"state_code": 15,
"year": 2001,
"type": "DOLOSOS",
"total": 2862,
"population": 1.3207e+07,
"rate": 21.671,
"name": "México",
"fillKey": "(19.1,26.9]"
},
"Michoacán de Ocampo": {
"state_code": 16,
"year": 2001,
"type": "DOLOSOS",
"total": 475,
"population": 4.1778e+06,
"rate": 11.369,
"name": "Michoacán de Ocampo",
"fillKey": "(11.1,14.9]"
},
"Morelos": {
"state_code": 17,
"year": 2001,
"type": "DOLOSOS",
"total": 193,
"population": 1.6118e+06,
"rate": 11.974,
"name": "Morelos",
"fillKey": "(11.1,14.9]"
},
"Nayarit": {
"state_code": 18,
"year": 2001,
"type": "DOLOSOS",
"total": 127,
"population": 9.4752e+05,
"rate": 13.403,
"name": "Nayarit",
"fillKey": "(11.1,14.9]"
},
"Nuevo León": {
"state_code": 19,
"year": 2001,
"type": "DOLOSOS",
"total": 140,
"population": 4.0301e+06,
"rate": 3.4739,
"name": "Nuevo León",
"fillKey": "(0,4.08]"
},
"Oaxaca": {
"state_code": 20,
"year": 2001,
"type": "DOLOSOS",
"total": 1311,
"population": 3.6799e+06,
"rate": 35.626,
"name": "Oaxaca",
"fillKey": "(26.9,111]"
},
"Puebla": {
"state_code": 21,
"year": 2001,
"type": "DOLOSOS",
"total": 502,
"population": 5.3053e+06,
"rate": 9.4623,
"name": "Puebla",
"fillKey": "(8.42,11.1]"
},
"Querétaro": {
"state_code": 22,
"year": 2001,
"type": "DOLOSOS",
"total": 86,
"population": 1.5807e+06,
"rate": 5.4407,
"name": "Querétaro",
"fillKey": "(4.08,5.56]"
},
"Quintana Roo": {
"state_code": 23,
"year": 2001,
"type": "DOLOSOS",
"total": 252,
"population": 9.7821e+05,
"rate": 25.761,
"name": "Quintana Roo",
"fillKey": "(19.1,26.9]"
},
"San Luis Potosí": {
"state_code": 24,
"year": 2001,
"type": "DOLOSOS",
"total": 195,
"population": 2.4082e+06,
"rate": 8.0975,
"name": "San Luis Potosí",
"fillKey": "(7.09,8.42]"
},
"Sinaloa": {
"state_code": 25,
"year": 2001,
"type": "DOLOSOS",
"total": 551,
"population": 2.5723e+06,
"rate": 21.421,
"name": "Sinaloa",
"fillKey": "(19.1,26.9]"
},
"Sonora": {
"state_code": 26,
"year": 2001,
"type": "DOLOSOS",
"total": 185,
"population": 2.3325e+06,
"rate": 7.9313,
"name": "Sonora",
"fillKey": "(7.09,8.42]"
},
"Tabasco": {
"state_code": 27,
"year": 2001,
"type": "DOLOSOS",
"total": 169,
"population": 2.0058e+06,
"rate": 8.4257,
"name": "Tabasco",
"fillKey": "(8.42,11.1]"
},
"Tamaulipas": {
"state_code": 28,
"year": 2001,
"type": "DOLOSOS",
"total": 165,
"population": 2.8542e+06,
"rate": 5.7809,
"name": "Tamaulipas",
"fillKey": "(5.56,7.09]"
},
"Tlaxcala": {
"state_code": 29,
"year": 2001,
"type": "DOLOSOS",
"total": 352,
"population": 1.0285e+06,
"rate": 34.226,
"name": "Tlaxcala",
"fillKey": "(26.9,111]"
},
"Veracruz de Ignacio de la Llave": {
"state_code": 30,
"year": 2001,
"type": "DOLOSOS",
"total": 467,
"population": 7.2604e+06,
"rate": 6.4321,
"name": "Veracruz de Ignacio de la Llave",
"fillKey": "(5.56,7.09]"
},
"Yucatán": {
"state_code": 31,
"year": 2001,
"type": "DOLOSOS",
"total": 16,
"population": 1.7472e+06,
"rate": 0.91573,
"name": "Yucatán",
"fillKey": "(0,4.08]"
},
"Zacatecas": {
"state_code": 32,
"year": 2001,
"type": "DOLOSOS",
"total": 94,
"population": 1.4221e+06,
"rate": 6.6098,
"name": "Zacatecas",
"fillKey": "(5.56,7.09]"
}
},
"2002": {
"Aguascalientes": {
"state_code": 1,
"year": 2002,
"type": "DOLOSOS",
"total": 26,
"population": 1.0446e+06,
"rate": 2.489,
"name": "Aguascalientes",
"fillKey": "(0,4.08]"
},
"Baja California": {
"state_code": 2,
"year": 2002,
"type": "DOLOSOS",
"total": 466,
"population": 2.7056e+06,
"rate": 17.223,
"name": "Baja California",
"fillKey": "(14.9,19.1]"
},
"Baja California Sur": {
"state_code": 3,
"year": 2002,
"type": "DOLOSOS",
"total": 28,
"population": 4.963e+05,
"rate": 5.6417,
"name": "Baja California Sur",
"fillKey": "(5.56,7.09]"
},
"Campeche": {
"state_code": 4,
"year": 2002,
"type": "DOLOSOS",
"total": 52,
"population": 7.2811e+05,
"rate": 7.1417,
"name": "Campeche",
"fillKey": "(7.09,8.42]"
},
"Coahuila de Zaragoza": {
"state_code": 5,
"year": 2002,
"type": "DOLOSOS",
"total": 131,
"population": 2.4745e+06,
"rate": 5.2939,
"name": "Coahuila de Zaragoza",
"fillKey": "(4.08,5.56]"
},
"Colima": {
"state_code": 6,
"year": 2002,
"type": "DOLOSOS",
"total": 45,
"population": 5.6683e+05,
"rate": 7.9389,
"name": "Colima",
"fillKey": "(7.09,8.42]"
},
"Chiapas": {
"state_code": 7,
"year": 2002,
"type": "DOLOSOS",
"total": 1056,
"population": 4.3221e+06,
"rate": 24.432,
"name": "Chiapas",
"fillKey": "(19.1,26.9]"
},
"Chihuahua": {
"state_code": 8,
"year": 2002,
"type": "DOLOSOS",
"total": 528,
"population": 3.1101e+06,
"rate": 16.977,
"name": "Chihuahua",
"fillKey": "(14.9,19.1]"
},
"Distrito Federal": {
"state_code": 9,
"year": 2002,
"type": "DOLOSOS",
"total": 748,
"population": 8.9735e+06,
"rate": 8.3356,
"name": "Distrito Federal",
"fillKey": "(7.09,8.42]"
},
"Durango": {
"state_code": 10,
"year": 2002,
"type": "DOLOSOS",
"total": 232,
"population": 1.5264e+06,
"rate": 15.199,
"name": "Durango",
"fillKey": "(14.9,19.1]"
},
"Guanajuato": {
"state_code": 11,
"year": 2002,
"type": "DOLOSOS",
"total": 208,
"population": 5.2104e+06,
"rate": 3.992,
"name": "Guanajuato",
"fillKey": "(0,4.08]"
},
"Guerrero": {
"state_code": 12,
"year": 2002,
"type": "DOLOSOS",
"total": 1035,
"population": 3.259e+06,
"rate": 31.758,
"name": "Guerrero",
"fillKey": "(26.9,111]"
},
"Hidalgo": {
"state_code": 13,
"year": 2002,
"type": "DOLOSOS",
"total": 129,
"population": 2.4327e+06,
"rate": 5.3028,
"name": "Hidalgo",
"fillKey": "(4.08,5.56]"
},
"Jalisco": {
"state_code": 14,
"year": 2002,
"type": "DOLOSOS",
"total": 431,
"population": 6.6752e+06,
"rate": 6.4567,
"name": "Jalisco",
"fillKey": "(5.56,7.09]"
},
"México": {
"state_code": 15,
"year": 2002,
"type": "DOLOSOS",
"total": 2870,
"population": 1.3471e+07,
"rate": 21.306,
"name": "México",
"fillKey": "(19.1,26.9]"
},
"Michoacán de Ocampo": {
"state_code": 16,
"year": 2002,
"type": "DOLOSOS",
"total": 428,
"population": 4.1948e+06,
"rate": 10.203,
"name": "Michoacán de Ocampo",
"fillKey": "(8.42,11.1]"
},
"Morelos": {
"state_code": 17,
"year": 2002,
"type": "DOLOSOS",
"total": 226,
"population": 1.6304e+06,
"rate": 13.862,
"name": "Morelos",
"fillKey": "(11.1,14.9]"
},
"Nayarit": {
"state_code": 18,
"year": 2002,
"type": "DOLOSOS",
"total": 117,
"population": 9.5898e+05,
"rate": 12.201,
"name": "Nayarit",
"fillKey": "(11.1,14.9]"
},
"Nuevo León": {
"state_code": 19,
"year": 2002,
"type": "DOLOSOS",
"total": 124,
"population": 4.1067e+06,
"rate": 3.0195,
"name": "Nuevo León",
"fillKey": "(0,4.08]"
},
"Oaxaca": {
"state_code": 20,
"year": 2002,
"type": "DOLOSOS",
"total": 1427,
"population": 3.6973e+06,
"rate": 38.596,
"name": "Oaxaca",
"fillKey": "(26.9,111]"
},
"Puebla": {
"state_code": 21,
"year": 2002,
"type": "DOLOSOS",
"total": 463,
"population": 5.3672e+06,
"rate": 8.6265,
"name": "Puebla",
"fillKey": "(8.42,11.1]"
},
"Querétaro": {
"state_code": 22,
"year": 2002,
"type": "DOLOSOS",
"total": 71,
"population": 1.6088e+06,
"rate": 4.4131,
"name": "Querétaro",
"fillKey": "(4.08,5.56]"
},
"Quintana Roo": {
"state_code": 23,
"year": 2002,
"type": "DOLOSOS",
"total": 194,
"population": 1.017e+06,
"rate": 19.076,
"name": "Quintana Roo",
"fillKey": "(14.9,19.1]"
},
"San Luis Potosí": {
"state_code": 24,
"year": 2002,
"type": "DOLOSOS",
"total": 245,
"population": 2.4267e+06,
"rate": 10.096,
"name": "San Luis Potosí",
"fillKey": "(8.42,11.1]"
},
"Sinaloa": {
"state_code": 25,
"year": 2002,
"type": "DOLOSOS",
"total": 485,
"population": 2.6037e+06,
"rate": 18.627,
"name": "Sinaloa",
"fillKey": "(14.9,19.1]"
},
"Sonora": {
"state_code": 26,
"year": 2002,
"type": "DOLOSOS",
"total": 165,
"population": 2.3752e+06,
"rate": 6.9469,
"name": "Sonora",
"fillKey": "(5.56,7.09]"
},
"Tabasco": {
"state_code": 27,
"year": 2002,
"type": "DOLOSOS",
"total": 141,
"population": 2.0349e+06,
"rate": 6.9291,
"name": "Tabasco",
"fillKey": "(5.56,7.09]"
},
"Tamaulipas": {
"state_code": 28,
"year": 2002,
"type": "DOLOSOS",
"total": 184,
"population": 2.9133e+06,
"rate": 6.3158,
"name": "Tamaulipas",
"fillKey": "(5.56,7.09]"
},
"Tlaxcala": {
"state_code": 29,
"year": 2002,
"type": "DOLOSOS",
"total": 309,
"population": 1.0462e+06,
"rate": 29.535,
"name": "Tlaxcala",
"fillKey": "(26.9,111]"
},
"Veracruz de Ignacio de la Llave": {
"state_code": 30,
"year": 2002,
"type": "DOLOSOS",
"total": 450,
"population": 7.296e+06,
"rate": 6.1678,
"name": "Veracruz de Ignacio de la Llave",
"fillKey": "(5.56,7.09]"
},
"Yucatán": {
"state_code": 31,
"year": 2002,
"type": "DOLOSOS",
"total": 30,
"population": 1.7728e+06,
"rate": 1.6922,
"name": "Yucatán",
"fillKey": "(0,4.08]"
},
"Zacatecas": {
"state_code": 32,
"year": 2002,
"type": "DOLOSOS",
"total": 104,
"population": 1.4267e+06,
"rate": 7.2897,
"name": "Zacatecas",
"fillKey": "(7.09,8.42]"
}
},
"2003": {
"Aguascalientes": {
"state_code": 1,
"year": 2003,
"type": "DOLOSOS",
"total": 21,
"population": 1.0629e+06,
"rate": 1.9757,
"name": "Aguascalientes",
"fillKey": "(0,4.08]"
},
"Baja California": {
"state_code": 2,
"year": 2003,
"type": "DOLOSOS",
"total": 479,
"population": 2.7785e+06,
"rate": 17.239,
"name": "Baja California",
"fillKey": "(14.9,19.1]"
},
"Baja California Sur": {
"state_code": 3,
"year": 2003,
"type": "DOLOSOS",
"total": 24,
"population": 5.1265e+05,
"rate": 4.6815,
"name": "Baja California Sur",
"fillKey": "(4.08,5.56]"
},
"Campeche": {
"state_code": 4,
"year": 2003,
"type": "DOLOSOS",
"total": 55,
"population": 7.4167e+05,
"rate": 7.4157,
"name": "Campeche",
"fillKey": "(7.09,8.42]"
},
"Coahuila de Zaragoza": {
"state_code": 5,
"year": 2003,
"type": "DOLOSOS",
"total": 116,
"population": 2.5137e+06,
"rate": 4.6147,
"name": "Coahuila de Zaragoza",
"fillKey": "(4.08,5.56]"
},
"Colima": {
"state_code": 6,
"year": 2003,
"type": "DOLOSOS",
"total": 34,
"population": 5.7575e+05,
"rate": 5.9054,
"name": "Colima",
"fillKey": "(5.56,7.09]"
},
"Chiapas": {
"state_code": 7,
"year": 2003,
"type": "DOLOSOS",
"total": 921,
"population": 4.4007e+06,
"rate": 20.929,
"name": "Chiapas",
"fillKey": "(19.1,26.9]"
},
"Chihuahua": {
"state_code": 8,
"year": 2003,
"type": "DOLOSOS",
"total": 471,
"population": 3.1672e+06,
"rate": 14.871,
"name": "Chihuahua",
"fillKey": "(11.1,14.9]"
},
"Distrito Federal": {
"state_code": 9,
"year": 2003,
"type": "DOLOSOS",
"total": 715,
"population": 8.9814e+06,
"rate": 7.9609,
"name": "Distrito Federal",
"fillKey": "(7.09,8.42]"
},
"Durango": {
"state_code": 10,
"year": 2003,
"type": "DOLOSOS",
"total": 216,
"population": 1.5404e+06,
"rate": 14.022,
"name": "Durango",
"fillKey": "(11.1,14.9]"
},
"Guanajuato": {
"state_code": 11,
"year": 2003,
"type": "DOLOSOS",
"total": 213,
"population": 5.2488e+06,
"rate": 4.0581,
"name": "Guanajuato",
"fillKey": "(0,4.08]"
},
"Guerrero": {
"state_code": 12,
"year": 2003,
"type": "DOLOSOS",
"total": 808,
"population": 3.2768e+06,
"rate": 24.658,
"name": "Guerrero",
"fillKey": "(19.1,26.9]"
},
"Hidalgo": {
"state_code": 13,
"year": 2003,
"type": "DOLOSOS",
"total": 113,
"population": 2.4573e+06,
"rate": 4.5986,
"name": "Hidalgo",
"fillKey": "(4.08,5.56]"
},
"Jalisco": {
"state_code": 14,
"year": 2003,
"type": "DOLOSOS",
"total": 424,
"population": 6.7547e+06,
"rate": 6.2771,
"name": "Jalisco",
"fillKey": "(5.56,7.09]"
},
"México": {
"state_code": 15,
"year": 2003,
"type": "DOLOSOS",
"total": 2741,
"population": 1.3733e+07,
"rate": 19.959,
"name": "México",
"fillKey": "(19.1,26.9]"
},
"Michoacán de Ocampo": {
"state_code": 16,
"year": 2003,
"type": "DOLOSOS",
"total": 440,
"population": 4.2115e+06,
"rate": 10.448,
"name": "Michoacán de Ocampo",
"fillKey": "(8.42,11.1]"
},
"Morelos": {
"state_code": 17,
"year": 2003,
"type": "DOLOSOS",
"total": 173,
"population": 1.6487e+06,
"rate": 10.493,
"name": "Morelos",
"fillKey": "(8.42,11.1]"
},
"Nayarit": {
"state_code": 18,
"year": 2003,
"type": "DOLOSOS",
"total": 95,
"population": 9.7142e+05,
"rate": 9.7795,
"name": "Nayarit",
"fillKey": "(8.42,11.1]"
},
"Nuevo León": {
"state_code": 19,
"year": 2003,
"type": "DOLOSOS",
"total": 135,
"population": 4.1831e+06,
"rate": 3.2273,
"name": "Nuevo León",
"fillKey": "(0,4.08]"
},
"Oaxaca": {
"state_code": 20,
"year": 2003,
"type": "DOLOSOS",
"total": 1571,
"population": 3.7173e+06,
"rate": 42.262,
"name": "Oaxaca",
"fillKey": "(26.9,111]"
},
"Puebla": {
"state_code": 21,
"year": 2003,
"type": "DOLOSOS",
"total": 488,
"population": 5.4311e+06,
"rate": 8.9854,
"name": "Puebla",
"fillKey": "(8.42,11.1]"
},
"Querétaro": {
"state_code": 22,
"year": 2003,
"type": "DOLOSOS",
"total": 71,
"population": 1.6379e+06,
"rate": 4.3349,
"name": "Querétaro",
"fillKey": "(4.08,5.56]"
},
"Quintana Roo": {
"state_code": 23,
"year": 2003,
"type": "DOLOSOS",
"total": 228,
"population": 1.0564e+06,
"rate": 21.583,
"name": "Quintana Roo",
"fillKey": "(19.1,26.9]"
},
"San Luis Potosí": {
"state_code": 24,
"year": 2003,
"type": "DOLOSOS",
"total": 121,
"population": 2.4453e+06,
"rate": 4.9483,
"name": "San Luis Potosí",
"fillKey": "(4.08,5.56]"
},
"Sinaloa": {
"state_code": 25,
"year": 2003,
"type": "DOLOSOS",
"total": 482,
"population": 2.6339e+06,
"rate": 18.3,
"name": "Sinaloa",
"fillKey": "(14.9,19.1]"
},
"Sonora": {
"state_code": 26,
"year": 2003,
"type": "DOLOSOS",
"total": 203,
"population": 2.4184e+06,
"rate": 8.3939,
"name": "Sonora",
"fillKey": "(7.09,8.42]"
},
"Tabasco": {
"state_code": 27,
"year": 2003,
"type": "DOLOSOS",
"total": 150,
"population": 2.064e+06,
"rate": 7.2676,
"name": "Tabasco",
"fillKey": "(7.09,8.42]"
},
"Tamaulipas": {
"state_code": 28,
"year": 2003,
"type": "DOLOSOS",
"total": 244,
"population": 2.9704e+06,
"rate": 8.2142,
"name": "Tamaulipas",
"fillKey": "(7.09,8.42]"
},
"Tlaxcala": {
"state_code": 29,
"year": 2003,
"type": "DOLOSOS",
"total": 286,
"population": 1.0645e+06,
"rate": 26.868,
"name": "Tlaxcala",
"fillKey": "(19.1,26.9]"
},
"Veracruz de Ignacio de la Llave": {
"state_code": 30,
"year": 2003,
"type": "DOLOSOS",
"total": 501,
"population": 7.3349e+06,
"rate": 6.8304,
"name": "Veracruz de Ignacio de la Llave",
"fillKey": "(5.56,7.09]"
},
"Yucatán": {
"state_code": 31,
"year": 2003,
"type": "DOLOSOS",
"total": 32,
"population": 1.7984e+06,
"rate": 1.7793,
"name": "Yucatán",
"fillKey": "(0,4.08]"
},
"Zacatecas": {
"state_code": 32,
"year": 2003,
"type": "DOLOSOS",
"total": 105,
"population": 1.4312e+06,
"rate": 7.3366,
"name": "Zacatecas",
"fillKey": "(7.09,8.42]"
}
},
"2004": {
"Aguascalientes": {
"state_code": 1,
"year": 2004,
"type": "DOLOSOS",
"total": 17,
"population": 1.0805e+06,
"rate": 1.5734,
"name": "Aguascalientes",
"fillKey": "(0,4.08]"
},
"Baja California": {
"state_code": 2,
"year": 2004,
"type": "DOLOSOS",
"total": 470,
"population": 2.8484e+06,
"rate": 16.501,
"name": "Baja California",
"fillKey": "(14.9,19.1]"
},
"Baja California Sur": {
"state_code": 3,
"year": 2004,
"type": "DOLOSOS",
"total": 36,
"population": 5.299e+05,
"rate": 6.7938,
"name": "Baja California Sur",
"fillKey": "(5.56,7.09]"
},
"Campeche": {
"state_code": 4,
"year": 2004,
"type": "DOLOSOS",
"total": 37,
"population": 7.5518e+05,
"rate": 4.8995,
"name": "Campeche",
"fillKey": "(4.08,5.56]"
},
"Coahuila de Zaragoza": {
"state_code": 5,
"year": 2004,
"type": "DOLOSOS",
"total": 103,
"population": 2.5517e+06,
"rate": 4.0365,
"name": "Coahuila de Zaragoza",
"fillKey": "(0,4.08]"
},
"Colima": {
"state_code": 6,
"year": 2004,
"type": "DOLOSOS",
"total": 45,
"population": 5.8465e+05,
"rate": 7.6969,
"name": "Colima",
"fillKey": "(7.09,8.42]"
},
"Chiapas": {
"state_code": 7,
"year": 2004,
"type": "DOLOSOS",
"total": 787,
"population": 4.4789e+06,
"rate": 17.571,
"name": "Chiapas",
"fillKey": "(14.9,19.1]"
},
"Chihuahua": {
"state_code": 8,
"year": 2004,
"type": "DOLOSOS",
"total": 444,
"population": 3.2208e+06,
"rate": 13.785,
"name": "Chihuahua",
"fillKey": "(11.1,14.9]"
},
"Distrito Federal": {
"state_code": 9,
"year": 2004,
"type": "DOLOSOS",
"total": 710,
"population": 8.9824e+06,
"rate": 7.9043,
"name": "Distrito Federal",
"fillKey": "(7.09,8.42]"
},
"Durango": {
"state_code": 10,
"year": 2004,
"type": "DOLOSOS",
"total": 120,
"population": 1.5526e+06,
"rate": 7.7288,
"name": "Durango",
"fillKey": "(7.09,8.42]"
},
"Guanajuato": {
"state_code": 11,
"year": 2004,
"type": "DOLOSOS",
"total": 194,
"population": 5.2826e+06,
"rate": 3.6724,
"name": "Guanajuato",
"fillKey": "(0,4.08]"
},
"Guerrero": {
"state_code": 12,
"year": 2004,
"type": "DOLOSOS",
"total": 539,
"population": 3.2921e+06,
"rate": 16.373,
"name": "Guerrero",
"fillKey": "(14.9,19.1]"
},
"Hidalgo": {
"state_code": 13,
"year": 2004,
"type": "DOLOSOS",
"total": 123,
"population": 2.4814e+06,
"rate": 4.9568,
"name": "Hidalgo",
"fillKey": "(4.08,5.56]"
},
"Jalisco": {
"state_code": 14,
"year": 2004,
"type": "DOLOSOS",
"total": 370,
"population": 6.8276e+06,
"rate": 5.4192,
"name": "Jalisco",
"fillKey": "(4.08,5.56]"
},
"México": {
"state_code": 15,
"year": 2004,
"type": "DOLOSOS",
"total": 2855,
"population": 1.3989e+07,
"rate": 20.409,
"name": "México",
"fillKey": "(19.1,26.9]"
},
"Michoacán de Ocampo": {
"state_code": 16,
"year": 2004,
"type": "DOLOSOS",
"total": 446,
"population": 4.2219e+06,
"rate": 10.564,
"name": "Michoacán de Ocampo",
"fillKey": "(8.42,11.1]"
},
"Morelos": {
"state_code": 17,
"year": 2004,
"type": "DOLOSOS",
"total": 219,
"population": 1.6649e+06,
"rate": 13.154,
"name": "Morelos",
"fillKey": "(11.1,14.9]"
},
"Nayarit": {
"state_code": 18,
"year": 2004,
"type": "DOLOSOS",
"total": 109,
"population": 9.8387e+05,
"rate": 11.079,
"name": "Nayarit",
"fillKey": "(11.1,14.9]"
},
"Nuevo León": {
"state_code": 19,
"year": 2004,
"type": "DOLOSOS",
"total": 117,
"population": 4.258e+06,
"rate": 2.7478,
"name": "Nuevo León",
"fillKey": "(0,4.08]"
},
"Oaxaca": {
"state_code": 20,
"year": 2004,
"type": "DOLOSOS",
"total": 1130,
"population": 3.738e+06,
"rate": 30.23,
"name": "Oaxaca",
"fillKey": "(26.9,111]"
},
"Puebla": {
"state_code": 21,
"year": 2004,
"type": "DOLOSOS",
"total": 468,
"population": 5.4943e+06,
"rate": 8.5179,
"name": "Puebla",
"fillKey": "(8.42,11.1]"
},
"Querétaro": {
"state_code": 22,
"year": 2004,
"type": "DOLOSOS",
"total": 62,
"population": 1.667e+06,
"rate": 3.7192,
"name": "Querétaro",
"fillKey": "(0,4.08]"
},
"Quintana Roo": {
"state_code": 23,
"year": 2004,
"type": "DOLOSOS",
"total": 138,
"population": 1.0964e+06,
"rate": 12.587,
"name": "Quintana Roo",
"fillKey": "(11.1,14.9]"
},
"San Luis Potosí": {
"state_code": 24,
"year": 2004,
"type": "DOLOSOS",
"total": 199,
"population": 2.4613e+06,
"rate": 8.085,
"name": "San Luis Potosí",
"fillKey": "(7.09,8.42]"
},
"Sinaloa": {
"state_code": 25,
"year": 2004,
"type": "DOLOSOS",
"total": 515,
"population": 2.6615e+06,
"rate": 19.35,
"name": "Sinaloa",
"fillKey": "(19.1,26.9]"
},
"Sonora": {
"state_code": 26,
"year": 2004,
"type": "DOLOSOS",
"total": 250,
"population": 2.4618e+06,
"rate": 10.155,
"name": "Sonora",
"fillKey": "(8.42,11.1]"
},
"Tabasco": {
"state_code": 27,
"year": 2004,
"type": "DOLOSOS",
"total": 120,
"population": 2.0931e+06,
"rate": 5.733,
"name": "Tabasco",
"fillKey": "(5.56,7.09]"
},
"Tamaulipas": {
"state_code": 28,
"year": 2004,
"type": "DOLOSOS",
"total": 225,
"population": 3.0246e+06,
"rate": 7.4391,
"name": "Tamaulipas",
"fillKey": "(7.09,8.42]"
},
"Tlaxcala": {
"state_code": 29,
"year": 2004,
"type": "DOLOSOS",
"total": 260,
"population": 1.0829e+06,
"rate": 24.01,
"name": "Tlaxcala",
"fillKey": "(19.1,26.9]"
},
"Veracruz de Ignacio de la Llave": {
"state_code": 30,
"year": 2004,
"type": "DOLOSOS",
"total": 465,
"population": 7.3738e+06,
"rate": 6.3061,
"name": "Veracruz de Ignacio de la Llave",
"fillKey": "(5.56,7.09]"
},
"Yucatán": {
"state_code": 31,
"year": 2004,
"type": "DOLOSOS",
"total": 30,
"population": 1.8241e+06,
"rate": 1.6446,
"name": "Yucatán",
"fillKey": "(0,4.08]"
},
"Zacatecas": {
"state_code": 32,
"year": 2004,
"type": "DOLOSOS",
"total": 55,
"population": 1.4332e+06,
"rate": 3.8375,
"name": "Zacatecas",
"fillKey": "(0,4.08]"
}
},
"2005": {
"Aguascalientes": {
"state_code": 1,
"year": 2005,
"type": "DOLOSOS",
"total": 19,
"population": 1.0975e+06,
"rate": 1.7312,
"name": "Aguascalientes",
"fillKey": "(0,4.08]"
},
"Baja California": {
"state_code": 2,
"year": 2005,
"type": "DOLOSOS",
"total": 539,
"population": 2.9152e+06,
"rate": 18.49,
"name": "Baja California",
"fillKey": "(14.9,19.1]"
},
"Baja California Sur": {
"state_code": 3,
"year": 2005,
"type": "DOLOSOS",
"total": 34,
"population": 5.476e+05,
"rate": 6.2089,
"name": "Baja California Sur",
"fillKey": "(5.56,7.09]"
},
"Campeche": {
"state_code": 4,
"year": 2005,
"type": "DOLOSOS",
"total": 51,
"population": 7.6867e+05,
"rate": 6.6349,
"name": "Campeche",
"fillKey": "(5.56,7.09]"
},
"Coahuila de Zaragoza": {
"state_code": 5,
"year": 2005,
"type": "DOLOSOS",
"total": 139,
"population": 2.5891e+06,
"rate": 5.3686,
"name": "Coahuila de Zaragoza",
"fillKey": "(4.08,5.56]"
},
"Colima": {
"state_code": 6,
"year": 2005,
"type": "DOLOSOS",
"total": 35,
"population": 5.9446e+05,
"rate": 5.8877,
"name": "Colima",
"fillKey": "(5.56,7.09]"
},
"Chiapas": {
"state_code": 7,
"year": 2005,
"type": "DOLOSOS",
"total": 415,
"population": 4.5513e+06,
"rate": 9.1183,
"name": "Chiapas",
"fillKey": "(8.42,11.1]"
},
"Chihuahua": {
"state_code": 8,
"year": 2005,
"type": "DOLOSOS",
"total": 550,
"population": 3.2726e+06,
"rate": 16.806,
"name": "Chihuahua",
"fillKey": "(14.9,19.1]"
},
"Distrito Federal": {
"state_code": 9,
"year": 2005,
"type": "DOLOSOS",
"total": 698,
"population": 8.9803e+06,
"rate": 7.7726,
"name": "Distrito Federal",
"fillKey": "(7.09,8.42]"
},
"Durango": {
"state_code": 10,
"year": 2005,
"type": "DOLOSOS",
"total": 189,
"population": 1.5675e+06,
"rate": 12.057,
"name": "Durango",
"fillKey": "(11.1,14.9]"
},
"Guanajuato": {
"state_code": 11,
"year": 2005,
"type": "DOLOSOS",
"total": 213,
"population": 5.3088e+06,
"rate": 4.0122,
"name": "Guanajuato",
"fillKey": "(0,4.08]"
},
"Guerrero": {
"state_code": 12,
"year": 2005,
"type": "DOLOSOS",
"total": 755,
"population": 3.3076e+06,
"rate": 22.826,
"name": "Guerrero",
"fillKey": "(19.1,26.9]"
},
"Hidalgo": {
"state_code": 13,
"year": 2005,
"type": "DOLOSOS",
"total": 118,
"population": 2.506e+06,
"rate": 4.7087,
"name": "Hidalgo",
"fillKey": "(4.08,5.56]"
},
"Jalisco": {
"state_code": 14,
"year": 2005,
"type": "DOLOSOS",
"total": 384,
"population": 6.9093e+06,
"rate": 5.5577,
"name": "Jalisco",
"fillKey": "(5.56,7.09]"
},
"México": {
"state_code": 15,
"year": 2005,
"type": "DOLOSOS",
"total": 2313,
"population": 1.4245e+07,
"rate": 16.237,
"name": "México",
"fillKey": "(14.9,19.1]"
},
"Michoacán de Ocampo": {
"state_code": 16,
"year": 2005,
"type": "DOLOSOS",
"total": 427,
"population": 4.2362e+06,
"rate": 10.08,
"name": "Michoacán de Ocampo",
"fillKey": "(8.42,11.1]"
},
"Morelos": {
"state_code": 17,
"year": 2005,
"type": "DOLOSOS",
"total": 160,
"population": 1.6834e+06,
"rate": 9.5047,
"name": "Morelos",
"fillKey": "(8.42,11.1]"
},
"Nayarit": {
"state_code": 18,
"year": 2005,
"type": "DOLOSOS",
"total": 93,
"population": 9.9873e+05,
"rate": 9.3118,
"name": "Nayarit",
"fillKey": "(8.42,11.1]"
},
"Nuevo León": {
"state_code": 19,
"year": 2005,
"type": "DOLOSOS",
"total": 143,
"population": 4.334e+06,
"rate": 3.2995,
"name": "Nuevo León",
"fillKey": "(0,4.08]"
},
"Oaxaca": {
"state_code": 20,
"year": 2005,
"type": "DOLOSOS",
"total": 1053,
"population": 3.7491e+06,
"rate": 28.087,
"name": "Oaxaca",
"fillKey": "(26.9,111]"
},
"Puebla": {
"state_code": 21,
"year": 2005,
"type": "DOLOSOS",
"total": 341,
"population": 5.5468e+06,
"rate": 6.1477,
"name": "Puebla",
"fillKey": "(5.56,7.09]"
},
"Querétaro": {
"state_code": 22,
"year": 2005,
"type": "DOLOSOS",
"total": 68,
"population": 1.6932e+06,
"rate": 4.0161,
"name": "Querétaro",
"fillKey": "(0,4.08]"
},
"Quintana Roo": {
"state_code": 23,
"year": 2005,
"type": "DOLOSOS",
"total": 119,
"population": 1.1361e+06,
"rate": 10.475,
"name": "Quintana Roo",
"fillKey": "(8.42,11.1]"
},
"San Luis Potosí": {
"state_code": 24,
"year": 2005,
"type": "DOLOSOS",
"total": 176,
"population": 2.4791e+06,
"rate": 7.0993,
"name": "San Luis Potosí",
"fillKey": "(7.09,8.42]"
},
"Sinaloa": {
"state_code": 25,
"year": 2005,
"type": "DOLOSOS",
"total": 609,
"population": 2.6909e+06,
"rate": 22.632,
"name": "Sinaloa",
"fillKey": "(19.1,26.9]"
},
"Sonora": {
"state_code": 26,
"year": 2005,
"type": "DOLOSOS",
"total": 275,
"population": 2.5032e+06,
"rate": 10.986,
"name": "Sonora",
"fillKey": "(8.42,11.1]"
},
"Tabasco": {
"state_code": 27,
"year": 2005,
"type": "DOLOSOS",
"total": 84,
"population": 2.1213e+06,
"rate": 3.9599,
"name": "Tabasco",
"fillKey": "(0,4.08]"
},
"Tamaulipas": {
"state_code": 28,
"year": 2005,
"type": "DOLOSOS",
"total": 357,
"population": 3.0777e+06,
"rate": 11.6,
"name": "Tamaulipas",
"fillKey": "(11.1,14.9]"
},
"Tlaxcala": {
"state_code": 29,
"year": 2005,
"type": "DOLOSOS",
"total": 350,
"population": 1.0991e+06,
"rate": 31.845,
"name": "Tlaxcala",
"fillKey": "(26.9,111]"
},
"Veracruz de Ignacio de la Llave": {
"state_code": 30,
"year": 2005,
"type": "DOLOSOS",
"total": 459,
"population": 7.4121e+06,
"rate": 6.1926,
"name": "Veracruz de Ignacio de la Llave",
"fillKey": "(5.56,7.09]"
},
"Yucatán": {
"state_code": 31,
"year": 2005,
"type": "DOLOSOS",
"total": 22,
"population": 1.8491e+06,
"rate": 1.1898,
"name": "Yucatán",
"fillKey": "(0,4.08]"
},
"Zacatecas": {
"state_code": 32,
"year": 2005,
"type": "DOLOSOS",
"total": 58,
"population": 1.4384e+06,
"rate": 4.0323,
"name": "Zacatecas",
"fillKey": "(0,4.08]"
}
},
"2006": {
"Aguascalientes": {
"state_code": 1,
"year": 2006,
"type": "DOLOSOS",
"total": 26,
"population": 1.1151e+06,
"rate": 2.3317,
"name": "Aguascalientes",
"fillKey": "(0,4.08]"
},
"Baja California": {
"state_code": 2,
"year": 2006,
"type": "DOLOSOS",
"total": 483,
"population": 2.9801e+06,
"rate": 16.208,
"name": "Baja California",
"fillKey": "(14.9,19.1]"
},
"Baja California Sur": {
"state_code": 3,
"year": 2006,
"type": "DOLOSOS",
"total": 20,
"population": 5.6598e+05,
"rate": 3.5337,
"name": "Baja California Sur",
"fillKey": "(0,4.08]"
},
"Campeche": {
"state_code": 4,
"year": 2006,
"type": "DOLOSOS",
"total": 28,
"population": 7.8223e+05,
"rate": 3.5795,
"name": "Campeche",
"fillKey": "(0,4.08]"
},
"Coahuila de Zaragoza": {
"state_code": 5,
"year": 2006,
"type": "DOLOSOS",
"total": 109,
"population": 2.627e+06,
"rate": 4.1492,
"name": "Coahuila de Zaragoza",
"fillKey": "(4.08,5.56]"
},
"Colima": {
"state_code": 6,
"year": 2006,
"type": "DOLOSOS",
"total": 31,
"population": 6.0565e+05,
"rate": 5.1184,
"name": "Colima",
"fillKey": "(4.08,5.56]"
},
"Chiapas": {
"state_code": 7,
"year": 2006,
"type": "DOLOSOS",
"total": 358,
"population": 4.6197e+06,
"rate": 7.7495,
"name": "Chiapas",
"fillKey": "(7.09,8.42]"
},
"Chihuahua": {
"state_code": 8,
"year": 2006,
"type": "DOLOSOS",
"total": 593,
"population": 3.3249e+06,
"rate": 17.835,
"name": "Chihuahua",
"fillKey": "(14.9,19.1]"
},
"Distrito Federal": {
"state_code": 9,
"year": 2006,
"type": "DOLOSOS",
"total": 649,
"population": 8.9776e+06,
"rate": 7.2291,
"name": "Distrito Federal",
"fillKey": "(7.09,8.42]"
},
"Durango": {
"state_code": 10,
"year": 2006,
"type": "DOLOSOS",
"total": 205,
"population": 1.5864e+06,
"rate": 12.923,
"name": "Durango",
"fillKey": "(11.1,14.9]"
},
"Guanajuato": {
"state_code": 11,
"year": 2006,
"type": "DOLOSOS",
"total": 242,
"population": 5.3372e+06,
"rate": 4.5342,
"name": "Guanajuato",
"fillKey": "(4.08,5.56]"
},
"Guerrero": {
"state_code": 12,
"year": 2006,
"type": "DOLOSOS",
"total": 837,
"population": 3.327e+06,
"rate": 25.158,
"name": "Guerrero",
"fillKey": "(19.1,26.9]"
},
"Hidalgo": {
"state_code": 13,
"year": 2006,
"type": "DOLOSOS",
"total": 101,
"population": 2.5339e+06,
"rate": 3.9859,
"name": "Hidalgo",
"fillKey": "(0,4.08]"
},
"Jalisco": {
"state_code": 14,
"year": 2006,
"type": "DOLOSOS",
"total": 425,
"population": 7.0055e+06,
"rate": 6.0667,
"name": "Jalisco",
"fillKey": "(5.56,7.09]"
},
"México": {
"state_code": 15,
"year": 2006,
"type": "DOLOSOS",
"total": 2766,
"population": 1.4509e+07,
"rate": 19.064,
"name": "México",
"fillKey": "(14.9,19.1]"
},
"Michoacán de Ocampo": {
"state_code": 16,
"year": 2006,
"type": "DOLOSOS",
"total": 661,
"population": 4.2607e+06,
"rate": 15.514,
"name": "Michoacán de Ocampo",
"fillKey": "(14.9,19.1]"
},
"Morelos": {
"state_code": 17,
"year": 2006,
"type": "DOLOSOS",
"total": 159,
"population": 1.7055e+06,
"rate": 9.3225,
"name": "Morelos",
"fillKey": "(8.42,11.1]"
},
"Nayarit": {
"state_code": 18,
"year": 2006,
"type": "DOLOSOS",
"total": 94,
"population": 1.0169e+06,
"rate": 9.2436,
"name": "Nayarit",
"fillKey": "(8.42,11.1]"
},
"Nuevo León": {
"state_code": 19,
"year": 2006,
"type": "DOLOSOS",
"total": 180,
"population": 4.4121e+06,
"rate": 4.0797,
"name": "Nuevo León",
"fillKey": "(0,4.08]"
},
"Oaxaca": {
"state_code": 20,
"year": 2006,
"type": "DOLOSOS",
"total": 1077,
"population": 3.7562e+06,
"rate": 28.673,
"name": "Oaxaca",
"fillKey": "(26.9,111]"
},
"Puebla": {
"state_code": 21,
"year": 2006,
"type": "DOLOSOS",
"total": 415,
"population": 5.5949e+06,
"rate": 7.4175,
"name": "Puebla",
"fillKey": "(7.09,8.42]"
},
"Querétaro": {
"state_code": 22,
"year": 2006,
"type": "DOLOSOS",
"total": 52,
"population": 1.7187e+06,
"rate": 3.0256,
"name": "Querétaro",
"fillKey": "(0,4.08]"
},
"Quintana Roo": {
"state_code": 23,
"year": 2006,
"type": "DOLOSOS",
"total": 119,
"population": 1.1768e+06,
"rate": 10.112,
"name": "Quintana Roo",
"fillKey": "(8.42,11.1]"
},
"San Luis Potosí": {
"state_code": 24,
"year": 2006,
"type": "DOLOSOS",
"total": 131,
"population": 2.5013e+06,
"rate": 5.2374,
"name": "San Luis Potosí",
"fillKey": "(4.08,5.56]"
},
"Sinaloa": {
"state_code": 25,
"year": 2006,
"type": "DOLOSOS",
"total": 602,
"population": 2.723e+06,
"rate": 22.108,
"name": "Sinaloa",
"fillKey": "(19.1,26.9]"
},
"Sonora": {
"state_code": 26,
"year": 2006,
"type": "DOLOSOS",
"total": 238,
"population": 2.5443e+06,
"rate": 9.3543,
"name": "Sonora",
"fillKey": "(8.42,11.1]"
},
"Tabasco": {
"state_code": 27,
"year": 2006,
"type": "DOLOSOS",
"total": 166,
"population": 2.1483e+06,
"rate": 7.7271,
"name": "Tabasco",
"fillKey": "(7.09,8.42]"
},
"Tamaulipas": {
"state_code": 28,
"year": 2006,
"type": "DOLOSOS",
"total": 346,
"population": 3.1318e+06,
"rate": 11.048,
"name": "Tamaulipas",
"fillKey": "(8.42,11.1]"
},
"Tlaxcala": {
"state_code": 29,
"year": 2006,
"type": "DOLOSOS",
"total": 187,
"population": 1.1142e+06,
"rate": 16.784,
"name": "Tlaxcala",
"fillKey": "(14.9,19.1]"
},
"Veracruz de Ignacio de la Llave": {
"state_code": 30,
"year": 2006,
"type": "DOLOSOS",
"total": 434,
"population": 7.455e+06,
"rate": 5.8216,
"name": "Veracruz de Ignacio de la Llave",
"fillKey": "(5.56,7.09]"
},
"Yucatán": {
"state_code": 31,
"year": 2006,
"type": "DOLOSOS",
"total": 22,
"population": 1.8738e+06,
"rate": 1.1741,
"name": "Yucatán",
"fillKey": "(0,4.08]"
},
"Zacatecas": {
"state_code": 32,
"year": 2006,
"type": "DOLOSOS",
"total": 50,
"population": 1.4486e+06,
"rate": 3.4515,
"name": "Zacatecas",
"fillKey": "(0,4.08]"
}
},
"2007": {
"Aguascalientes": {
"state_code": 1,
"year": 2007,
"type": "DOLOSOS",
"total": 49,
"population": 1.1341e+06,
"rate": 4.3205,
"name": "Aguascalientes",
"fillKey": "(4.08,5.56]"
},
"Baja California": {
"state_code": 2,
"year": 2007,
"type": "DOLOSOS",
"total": 511,
"population": 3.0444e+06,
"rate": 16.785,
"name": "Baja California",
"fillKey": "(14.9,19.1]"
},
"Baja California Sur": {
"state_code": 3,
"year": 2007,
"type": "DOLOSOS",
"total": 28,
"population": 5.8562e+05,
"rate": 4.7813,
"name": "Baja California Sur",
"fillKey": "(4.08,5.56]"
},
"Campeche": {
"state_code": 4,
"year": 2007,