A data.frame containing population estimates for all the Mexican municipios in 2015.
df_mxmunicipio
An object of class data.frame
with 2457 rows and 19 columns.
INEGI code of each state
INEGI code of each municipio
INEGI code of the state
short state name (e.g. Coahuila)
Official state name (e.g. Coahuila de Zaragoza)
state abbreviation
official state abbreviation (it can be awkward to use Chis for Chiapas) according to the INEGI.
official name of each municipio
2015, the year of the Conteo from which the data is sourced
total municipio population according to the Encuesta Intercensal 2015
male population according to the Encuesta Intercensal 2015
female population according to the Encuesta Intercensal 2015
afromexican population according to the Encuesta Intercensal 2015
part afromexican population according to the Encuesta Intercensal 2015
indigenous population according to the Encuesta Intercensal 2015
part indigenous population according to the Encuesta Intercensal 2015
metro area to which each municipio belongs
longitude of the localidad cabecera of each municipio
latitude of the localidad cabecera of each municipio
Population estimates taken from the Encuesta Intercensal. The latitude and longitude of the localidad cabecera of each municipio come from the Catálogo de entidades federativas, municipios y localidades and the metro areas from the CONAPO
data("df_mxmunicipio")
head(df_mxmunicipio)
#> state_code municipio_code region state_name state_name_official
#> 1 01 001 01001 Aguascalientes Aguascalientes
#> 2 01 002 01002 Aguascalientes Aguascalientes
#> 3 01 003 01003 Aguascalientes Aguascalientes
#> 4 01 004 01004 Aguascalientes Aguascalientes
#> 5 01 005 01005 Aguascalientes Aguascalientes
#> 6 01 006 01006 Aguascalientes Aguascalientes
#> state_abbr state_abbr_official municipio_name year pop pop_male
#> 1 AGS Ags. Aguascalientes 2015 877190 425731
#> 2 AGS Ags. Asientos 2015 46464 22745
#> 3 AGS Ags. Calvillo 2015 56048 27298
#> 4 AGS Ags. Cosío 2015 15577 7552
#> 5 AGS Ags. Jesús María 2015 120405 60135
#> 6 AGS Ags. Pabellón de Arteaga 2015 46473 22490
#> pop_female afromexican part_afromexican indigenous part_indigenous
#> 1 451459 532 2791 104125 14209
#> 2 23719 3 130 1691 92
#> 3 28750 10 167 7358 2223
#> 4 8025 0 67 2213 191
#> 5 60270 32 219 8679 649
#> 6 23983 3 74 6232 251
#> metro_area long lat
#> 1 Aguascalientes -102.2960 21.87982
#> 2 <NA> -102.0893 22.23832
#> 3 <NA> -102.7188 21.84691
#> 4 <NA> -102.3000 22.36641
#> 5 Aguascalientes -102.3434 21.96127
#> 6 <NA> -102.2765 22.14920