how to increase the figure size in matplotlib
import matplotlib.pyplot as plt
plt.figure(figsize=(14,7)) 
plt.bar(x,y) 
# if you have plotted you graph directly using dataframe like this ↓
data.plot(kind='bar')
# then use this
plt.rcParams["figure.figsize"] = (14,7)
