Skip to content

Instantly share code, notes, and snippets.

@charlesroper
Last active November 9, 2015 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charlesroper/1317a0c7325571861f2f to your computer and use it in GitHub Desktop.
Save charlesroper/1317a0c7325571861f2f to your computer and use it in GitHub Desktop.
spring = london.ix[datetime(2014,3,1) : datetime(2014,5,31)]
spring['Mean Humidity'].plot(
grid=True,
figsize=(10, 5),
title="Mean humidity during spring (March, April and May)")
# Another way of doing it...
springHumidity = london['Mean Humidity'].ix[
datetime(2014,3,1) : datetime(2014,5,31)]
springHumidity.plot(
grid=True,
figsize=(10, 5),
title="Mean humidity during spring (March, April and May)")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment