in reply to (contest) Help analyze PM reputation statistics
An interesting statistic would be whether the entropy of the reputation random variable is going up or down over time. Then we could say whether node reputation was becoming more or less meaningful.use List::Util 'sum'; my $sum = sum values %rep_stats; my $entropy = sum map { -($_/$sum) * log($_/$sum) / log(2) } values %rep_stats; printf "Total entropy: %.05f\n", $entropy;
blokhead
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: (contest) Help analyze PM reputation statistics
by sintadil (Pilgrim) on Sep 15, 2004 at 00:15 UTC | |
by blokhead (Monsignor) on Sep 15, 2004 at 03:29 UTC | |
by sintadil (Pilgrim) on Sep 15, 2004 at 04:48 UTC | |
by ysth (Canon) on Sep 15, 2004 at 08:07 UTC |