I have made my plots inline on my Ipython Notebook with \"%matplotlib inline.\"
%matplotlib inline
Now, the plot appears. However, it is very small. Is there a way to ma
A quick fix to "plot overlap" is to use plt.tight_layout():
for i,var in enumerate(categorical_variables): plt.title(var) plt.xticks(rotation=45) df[var].hist() plt.subplot(len(categorical_variables)/2, 2, i+1) plt.tight_layout()