import numpy as np import matplotlib.pyplot as plt # creating the dataset data = {'0':0, '1':0, '2':0, '3':0, '4':0, '5':13.7, '6':0, '7':31.9, '8':2.47, '9':6.87, '10':0, '11':0, '12':0, '13':0, '14':0, '15':0, '16':0, '17':0, '18':0, '19':0, '20':0, '21':0, '22':0, '23':0, '24':0, '25':0, '26':0, '27':0, '28':0, '29':0, '30':0, } courses = list(data.keys()) values = list(data.values()) fig = plt.figure(figsize = (10, 5)) # creating the bar plot plt.bar(courses, values, color ='maroon', width = 0.4) plt.xlabel("November 2023") plt.ylabel("mm") plt.title("November Rain") plt.show()