Question: What did the company score for NAT.C16 Collective bargaining fundamentals in the Nature Benchmark?
Answer:
5
World Benchmarking Alliance
Aurubis
2022
Unverified - Added by Steward

score = (x) -> 
  if x == "Yes"
    10
  else
    0
  
weights = [0.5, 0.5]
collective_bargaining_fundamentals = [collective_bargaining, collecting_bargaining_in_business_relationships]

weights.reduce((weighted_sum, weight, index) -> 
              weighted_sum + weight*score(collective_bargaining_fundamentals[index])
             , 0)
collective_bargaining
Yes
collecting_bargaining_in_business_relationships
No

Comments