Advertisement
hbar

Untitled

Nov 19th, 2013
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. f1 = plt.figure()
  3. f2 = plt.figure()
  4. ax1 = f1.add_subplot(111)
  5. ax1.plot(range(0,10))
  6. ax2 = f2.add_subplot(111)
  7. ax2.plot(range(10,20))
  8. f1.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement