Title: | Quantitative Analysis Tools for Gender Studies |
---|---|
Description: | Provides tools for quantitative analysis in gender studies, including functions to calculate various gender inequality metrics such as the Gender Pay Gap, Gender Inequality Index (GII), Gender Development Index (GDI), and Gender Empowerment Measure (GEM). Also includes extracted secondary example datasets for practice and learning purposes, which were obtained from the UNDP Human Development Reports Data Center and the World Bank Gender Data Portal by the author the dataset is available on <doi:10.34740/kaggle/dsv/6359326>. References: Miller, Kevin; Vagins, Deborah J. (2021) <https://eric.ed.gov/?id=ED596219>. Jacques Charmes & Saskia Wieringa (2003) <doi:10.1080/1464988032000125773>. Gaƫlle Ferrant (2010) <https://shs.hal.science/halshs-00462463/>. |
Authors: | S M Mashrur Arafin Ayon [aut, cre]
|
Maintainer: | S M Mashrur Arafin Ayon <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.1.5 |
Built: | 2025-02-24 05:03:25 UTC |
Source: | https://github.com/cran/genderstat |
Computes the Gender Development Index (GDI) based on the given dataset. The GDI measures gender disparities in three dimensions of human development: health, education, and standard of living.
gender_development_index(data)
gender_development_index(data)
data |
A data frame containing the required metrics for GDI computation. The data frame must include the following columns: |
A data frame containing the GDI values for each country, along with the individual HDI values for females and males.
data(real_data_GDI) # Load example dataset gdi_results <- gender_development_index(real_data_GDI) print(gdi_results)
data(real_data_GDI) # Load example dataset gdi_results <- gender_development_index(real_data_GDI) print(gdi_results)
Computes the Gender Empowerment Measure (GEM) based on the provided dataset. The GEM measures gender inequality in political representation, professional positions, and income.
gender_empowerment_measure(data)
gender_empowerment_measure(data)
data |
A data frame containing the required metrics for GEM computation.
The data frame must include the following columns: |
A data frame with two columns: country
and GEM
, representing the GEM values for each country.
data(real_data_GEM) # Load example dataset gem_results <- gender_empowerment_measure(real_data_GEM) print(gem_results)
data(real_data_GEM) # Load example dataset gem_results <- gender_empowerment_measure(real_data_GEM) print(gem_results)
Computes the Gender Inequality Index (GII) based on the provided dataset. The GII measures gender disparities in reproductive health, empowerment, and labor market participation.
gender_inequality_index(data)
gender_inequality_index(data)
data |
A data frame containing the required metrics for GII computation.
The data frame must include the following columns: |
A data frame with two columns: country
and GII
, representing the GII values for each country.
data(real_data_GII) # Load example dataset gii_results <- gender_inequality_index(real_data_GII) print(gii_results)
data(real_data_GII) # Load example dataset gii_results <- gender_inequality_index(real_data_GII) print(gii_results)
Computes the Gender Pay Gap (GPG) based on the provided dataset. The GPG is calculated as the percentage difference between male and female incomes, providing insight into income disparities between genders.
gender_pay_gap(data)
gender_pay_gap(data)
data |
A data frame containing the required metrics for GPG computation. The data frame must include the columns: |
A data frame with two columns: country
and gpg
, representing the GPG values for each country.
data(real_data_GPG) # Load example dataset gpg_results <- gender_pay_gap(real_data_GPG) print(gpg_results)
data(real_data_GPG) # Load example dataset gpg_results <- gender_pay_gap(real_data_GPG) print(gpg_results)
A dataset containing observed values for the GDI analysis. This data includes metrics for evaluating gender disparities in health, education, and economic resources across different countries.
data(real_data_GDI)
data(real_data_GDI)
A data frame with 191 rows and 7 columns:
A character vector representing the name of the country.
A numeric vector representing the life expectancy of females in the respective country, measured in years.
A numeric vector representing the life expectancy of males in the respective country, measured in years.
A numeric vector representing the average number of schooling years for females in the respective country.
A numeric vector representing the average number of schooling years for males in the respective country.
A numeric vector representing the Gross National Income per capita for females in the respective country, measured in international dollars.
A numeric vector representing the Gross National Income per capita for males in the respective country, measured in international dollars.
Data obtained from Kaggle.
A dataset containing observed values for the GEM analysis. This data includes metrics for evaluating gender disparities in political representation, professional positions, and income across different countries.
data(real_data_GEM)
data(real_data_GEM)
A data frame with 191 rows and 4 columns:
A character vector representing the name of the country.
A numeric vector representing the ratio of parliamentary seats occupied by females in the respective country. Measured as a proportion (0-1).
A numeric vector representing the ratio of professional and technical job roles occupied by females in the respective country. Measured as a proportion (0-1).
A numeric vector representing the income ratio for females in the respective country in comparison to males. Measured as a proportion (0-1), where 1 indicates equal income with males.
Data obtained from Kaggle.
A dataset containing observed values for the GII analysis. This data includes metrics for evaluating gender disparities in reproductive health, empowerment, and labor market participation across different countries.
data(real_data_GII)
data(real_data_GII)
A data frame with 191 rows and 8 columns:
A character vector representing the name of the country.
A numeric vector representing the maternal mortality ratio.
A numeric vector representing the adolescent birth rate.
A numeric vector representing the proportion of parliamentary seats occupied by females in the respective country. Measured as a proportion (0-1).
A numeric vector representing the proportion of females with secondary education in the respective country. Measured as a proportion (0-1).
A numeric vector representing the proportion of males with secondary education in the respective country. Measured as a proportion (0-1).
A numeric vector representing the proportion of females in the labor force in the respective country. Measured as a proportion (0-1).
A numeric vector representing the proportion of males in the labor force in the respective country. Measured as a proportion (0-1).
Data obtained from Kaggle.
A dataset containing observed values for the GPG analysis. This data includes metrics for evaluating income disparities between genders across different countries.
data(real_data_GPG)
data(real_data_GPG)
A data frame with 191 rows and 3 columns:
A character vector representing the name of the country.
A numeric vector representing the per capita female National Income in the respective country.
A numeric vector representing the per capita male National Income in the respective country.
Data obtained from Kaggle.