Question: What did the company score for NAT.C10 Engaging with affected and potentially affected stakeholders in the Nature Benchmark?
Answer:
0
World Benchmarking Alliance
Cipla
2022
Unverified - Added by Steward

score = (x) -> 
  if x == "Yes"
    10
  else
    0
  
weights = [0.5, 0.5]
engaging_with_affected_and_potentially_affected_stakeholders = [engagement, examples]

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

Comments