Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
29 lines (23 sloc)
657 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
"""This module implements the Shannon entropy of a discrete sequence. | |
""" | |
from collections import Counter | |
from math import log | |
def entropy(X): | |
"""Compute the entropy of a message. | |
Args: | |
X (sequence): a sequence of discrete outcomes | |
Returns: | |
(float): the entropy of X | |
""" | |
res = 0 | |
n = len(X) | |
counts = Counter(X).values() | |
for count in counts: | |
res -= (count / n) * (log(count, 2) - log(n, 2)) | |
return res | |
if __name__ == "__main__": | |
print(entropy([1, 2, 1, 1, 1, 1])) | |
print(entropy([1, 1, 1, 1, 1, 1])) | |
print(entropy([1, 1, 1, 2, 2, 2])) |