Skip to contents

Computes female employment share (GRI 405-1) and local employment share (GRI 202-2 / SASB EM-MM-210b) of the site workforce.

Usage

calculate_workforce_diversity(
  workforce,
  female_employees,
  local_employees = NULL
)

Arguments

workforce

Numeric. Total workforce headcount. Must be > 0.

female_employees

Numeric. Female employee headcount.

local_employees

Numeric. Optional. Employees hired from the local/host community.

Value

A named list with metric, female_employment_pct and, when supplied, local_employment_pct.

Examples

calculate_workforce_diversity(3200, 420, local_employees = 1900)
#> $metric
#> [1] "SDG 5.5 / 8.5 - Workforce Diversity & Localisation"
#> 
#> $female_employment_pct
#> [1] 13.12
#> 
#> $local_employment_pct
#> [1] 59.38
#>