Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # solid
  2. plt.plot( my_series, linestyle='-', marker='o')
  3.  
  4. # dotted, excluding Nan
  5. plt.plot( my_series.dropna(), linestyle=':', marker='o')
  6.  
  7. plt.plot( my_series, linestyle='-', marker='o')
  8. plt.plot( my_series.dropna(), linestyle=':', marker='o')
  9. plt.show
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement