This dataset, mexico_states_df, is a data frame containing population estimates and demographic indicators for all 32 Mexican states in the year 2020. It includes total population, gender-specific counts, and the number of people who self-identify as Afro-Mexican or speak an indigenous language.
data(mexico_states_df)
A data frame with 32 observations and 11 variables:
Geographic region of the state (character)
State name (character)
Official state name (character)
State abbreviation (character)
Official state abbreviation (character)
Year of the data (numeric)
Total population (integer)
Male population (integer)
Female population (integer)
Number of people who identify as Afro-Mexican (integer)
Number of people who speak an indigenous language (integer)
The dataset name has been kept as 'mexico_states_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the MexicoDataAPI package and assists users in identifying its specific characteristics. The suffix 'df' indicates that the dataset is a data frame. The original content has not been modified in any way.