change size of hist pandas plot code example
Example 1: change figure size pandas
df['column_name'].plot(figsize=(15, 10))
Example 2: change plot size matplotlib
from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')