Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 25, 2020 11:31
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/ad5e395fedd84fc6c93c81be2c7e0c29 to your computer and use it in GitHub Desktop.
Save computer-tutor/ad5e395fedd84fc6c93c81be2c7e0c29 to your computer and use it in GitHub Desktop.
import pandas as pd
import matplotlib.pyplot as plt
# Bar Graph
df= pd.read_csv("Rainfall.csv")
print(df)
df.plot.bar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment