Replicating the Talk Statistics for Hackers

Statistics
Notebook
%matplotlib inline import matplotlib.pyplot as plt import numpy as np styles = plt.style.available x = np.arange(-10, 23) y = np.sin(x * np.cos(x**2)) for style in styles: plt.style.use(style) fig, ax = plt.subplots(figsize=(3, 3)) ax.plot(x, y, label='blabla') ax.set_title(style) ax.legend()

This article has been tagged with the following terms:

Statistics


Comments