Learn R Programming

genderstat (version 0.1.5)

gender_inequality_index: Gender Inequality Index (GII)

Description

Computes the Gender Inequality Index (GII) based on the provided dataset. The GII measures gender disparities in reproductive health, empowerment, and labor market participation.

Usage

gender_inequality_index(data)

Value

A data frame with two columns: country and GII, representing the GII values for each country.

Arguments

data

A data frame containing the required metrics for GII computation. The data frame must include the following columns: maternal_mortality_ratio, adolescent_birth_rate, female_parliament_seats, female_secondary_education, male_secondary_education, female_labor_force, and male_labor_force.

Examples

Run this code
data(real_data_GII) # Load example dataset
gii_results <- gender_inequality_index(real_data_GII)
print(gii_results)

Run the code above in your browser using DataLab