Question: What did the company score for NAT.C06 Commitment to respect the human rights of workers in the Nature Benchmark?
Answer:
10
World Benchmarking Alliance
Cipla
2022
Unverified - Added by Steward

score = (x) -> 
  if x == "Yes"
    10
  else
    0
  
weights = [0.5, 0.5]
human_rights = [commitment, partner_commitment]

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

Comments