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
To adjust the size of one figure:
import matplotlib.pyplot as plt fig=plt.figure(figsize=(15, 15))
To change the default settings, and therefore all your plots:
import matplotlib.pyplot as plt plt.rcParams['figure.figsize'] = [15, 15]