Mood Calculation - devleague/omnimood GitHub Wiki

Mood Calculation by Country

calculation in mood.js

Naive Approach

  1. Sum all of the emoji values sum += emoji[value] * emoji[amount];
  2. Sum all of the emoji amounts total += emoji[amount];
  3. Divide the sum by total to get an approximate average mood (can be positive or negative) moodValue = sum / total;