Learn R Programming

genderstat (version 0.1.5)

gender_empowerment_measure: Gender Empowerment Measure (GEM)

Description

Computes the Gender Empowerment Measure (GEM) based on the provided dataset. The GEM measures gender inequality in political representation, professional positions, and income.

Usage

gender_empowerment_measure(data)

Value

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

Arguments

data

A data frame containing the required metrics for GEM computation. The data frame must include the following columns: female_parliament_seats, female_professional_positions, and female_to_male_earned_income_ratio.

Examples

Run this code
data(real_data_GEM) # Load example dataset
gem_results <- gender_empowerment_measure(real_data_GEM)
print(gem_results)

Run the code above in your browser using DataLab