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
The default figure size (in inches) is controlled by
matplotlib.rcParams['figure.figsize'] = [width, height]
For example:
import matplotlib.pyplot as plt plt.rcParams['figure.figsize'] = [10, 5]
creates a figure with 10 (width) x 5 (height) inches