Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 25, 2020 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save computer-tutor/5c36ea884f855864f0ebc57c3bf93aa8 to your computer and use it in GitHub Desktop.
Save computer-tutor/5c36ea884f855864f0ebc57c3bf93aa8 to your computer and use it in GitHub Desktop.
plt.plot([140,130,130,190,160,200,150,170,190,170,150,120], label='North')
plt.plot([160,200,130,200,200,170,110,160,130,140,170,200], label= 'South')
plt.plot([140,180,150,170,190,140,170,180,190,150,140,170], label='East')
plt.plot([180,150,200,120,180,140,110,130,150,190,110,140], label='West')
plt.plot([110,160,130,110,120,170,130,200,150,160,170,130], label='Central')
plt.title("Rainfall from Jan to Dec")
plt.xlabel('X-Axis')
plt.ylabel('Y-Axis')
plt.legend()
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment