This file contains hidden or 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
# A quick demo of how to produce a loglog histogram plot of very large | |
# amounts of data, by using log-histogram bins | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import itertools as it | |
# We shall draw millions of samples from a Zipf distribution. Using linear | |
# bins this is too much data for a fast and attactive plot. |