gender_inequality_index {genderstat}R Documentation

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)

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.

Value

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

Examples

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


[Package genderstat version 0.1.5 Index]