Question: What did the company score for NAT.C17 Workforce diversity disclosure fundamentals in the Nature Benchmark?
Answer:
7.5
World Benchmarking Alliance
Johnson&Johnson
2022
Unverified - Added by Steward

score = (x) -> 
  if x == "Yes"
    10
  else
    0
  
weights = [0.25, 0.25, 0.25, 0.25]
workforce_diversity_disclosure = [age, gender, race, other]

weights.reduce((weighted_sum, weight, index) -> 
              weighted_sum + weight*score(workforce_diversity_disclosure[index])
             , 0)

Comments