Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. ser = pd.Series(np.random.randn(10000))
  3. fig, ax = plt.subplots(1, 2, figsize=(8,4))
  4. p1 = ser.hist(bins=100, ax=ax[0])
  5. p1 = ser.hist(ax=ax[1])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement