Mood Calculation - devleague/omnimood GitHub Wiki
Mood Calculation by Country
calculation in mood.js
Naive Approach
- Sum all of the emoji values
sum += emoji[value] * emoji[amount];
- Sum all of the emoji amounts
total += emoji[amount];
- Divide the sum by total to get an approximate average mood (can be positive or negative)
moodValue = sum / total;