The information entropy (Shannon entropy) of the elements in the counter (in bits).

Property definitions

counter $ Counter :: entropy
	# The information entropy (Shannon entropy) of the elements in the counter (in bits).
	fun entropy: Float
	do
		var res = 0.0
		var sum = self.sum.to_f
		for k, v in self do
			var f = v.to_f / sum
			res = res - f * f.log_base(2.0)
		end
		return res
	end
lib/counter/counter.nit:265,2--275,4