Guest User

Untitled

a guest
Feb 16th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. def plotSeriesValues(seriesValuesArray, figsize_rows=15, figsize_cols=10):
  2. import matplotlib.pyplot as plt
  3.  
  4. plt.subplots(figsize=(figsize_rows, figsize_rows))
  5. for seriesVol in seriesValuesArray:
  6. plt.plot(seriesVol)
  7.  
  8. plt.show()
  9.  
  10. return
Add Comment
Please, Sign In to add comment