A data.frame containing population estimates for all the Mexican states in 2020
df_mxstate_2020
An object of class data.frame
with 32 rows and 11 columns.
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.
2015, the year of the Conteo from which the data is sourced
total state population according to the Censo 2020
male population according to the Censo 2020
female population according to the Censo 2020
afromexican population according to the Censo 2020
Number of persons who speak an indigenous language according to the Censo 2020
Population estimates taken from the Censo 2020.
data("df_mxstate_2020")
head(df_mxstate_2020)
#> region state_name state_name_official state_abbr
#> 1 01 Aguascalientes Aguascalientes AGS
#> 2 02 Baja California Baja California BC
#> 3 03 Baja California Sur Baja California Sur BCS
#> 4 04 Campeche Campeche CAMP
#> 5 05 Coahuila Coahuila de Zaragoza COAH
#> 6 06 Colima Colima COL
#> state_abbr_official year pop pop_male pop_female afromexican
#> 1 Ags. 2020 1425607 696683 728924 22425
#> 2 BC 2020 3769020 1900589 1868431 64362
#> 3 BCS 2020 798447 405879 392568 26330
#> 4 Camp. 2020 928363 456939 471424 19319
#> 5 Coah. 2020 3146771 1563669 1583102 45976
#> 6 Col. 2020 731391 360622 370769 13574
#> indigenous_language
#> 1 2539
#> 2 49130
#> 3 13581
#> 4 91801
#> 5 5527
#> 6 5210