plt.figure(figsize=(20,10))
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)
plt.figure(figsize=(14,7))
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (20,3)
from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
fig, ax = plt.subplots(figsize=(width,height))
# Import Library
import 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()
fig_width, fig_height = plt.gcf().get_size_inches()
print(fig_width, fig_height)
subplot(1,1,1)
plot(x, y, 'r--')
subplot(1,2,2)
plot(y, x, 'g*-');