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)
# importing the matplotlib libraryimport matplotlib.pyplot as plt
# values on x-axis
x =[1,2,3,4,5]# values on y-axis
y =[1,2,3,4,5]# naming the x and y axis
plt.xlabel('x - axis')
plt.ylabel('y - axis')# plotting a line plot with it's default sizeprint("Plot in it's default size: ")
plt.plot(x, y)
plt.show()# plotting a line plot after changing it's width and height
f = plt.figure()
f.set_figwidth(4)
f.set_figheight(1)print("Plot after re-sizing: ")
plt.plot(x, y)
plt.show()
# Import Libraryimport matplotlib.pyplot as plt
# Increase size of plot in jupyter
plt.rcParams["figure.figsize"]=(8,5.5)# Define Data
x =[2,4,6,8]
y =[5,10,15,20]# Plot
plt.plot(x, y,'-.')# Display
plt.show()