Skip to content

Instantly share code, notes, and snippets.

@mgalgs
Created May 23, 2013 05:42
Show Gist options
  • Save mgalgs/5632971 to your computer and use it in GitHub Desktop.
Save mgalgs/5632971 to your computer and use it in GitHub Desktop.
fig = pylab.figure()
ax = fig.add_subplot(111)
ax.yaxis.grid(color='gray', linestyle='dashed')
ax.xaxis.grid(color='gray', linestyle='dashed')
ax.plot(dates, data, 'o-')
fig.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment