HumanDynamics / MassScaleSocialSystems

For TweetPing Collaboration on Mass Scale Participatory Projects
1 stars 1 forks source link

Must-Have: remove first 20 points from visualization of personality dimensions #86

Closed DarkSymmetry closed 9 years ago

DarkSymmetry commented 9 years ago

Users cannot score lower than 20 points on any of the personality dimensions. If we remove the first 20 points from the personality visualization, then the differences in personality scores will become more visible. Currently, the shape of the personality graph tends to a rather balanced pentagon, even when personality scores are quite different from each other. This is probably a scaling issue that can be remedied by removing the first 20 points from the visualization.

skiano commented 9 years ago

I think if i am reading this right, it means that what we really mean is that the minimum score in a dimension is 10 and the maximum is 50 and we want to stretch that range so that it displays from 0 to 100.

I put in this formula

return Math.floor(((value - 10) / 40) * 100);

i think that does what you want, but let me know if not.

DarkSymmetry commented 9 years ago

Looks good.

skiano commented 9 years ago

Can we close this if it looks good?

DarkSymmetry commented 9 years ago

Verified Fixed