I am running IPython Notepad:
$ ipython notebook --pylab inline
Can I scale graphics or images that are embedded?
eg. I have
pylab.xlabel("Label X") pylab.ylabel("Label Y") pylab.scatter(range(2,15,2), [2, 3, 5, 7, 11, 13, 17], c="r")
and I want him to be bigger.
Of course, I can try to manually change the parameters, for example.
pylab.figure(figsize=(12, 8)) pylab.xlabel("Label X", fontsize = 20) pylab.ylabel("Label Y", fontsize = 20) pylab.scatter(range(2,15,2), [2, 3, 5, 7, 11, 13, 17], c="r", s=100)
but itβs neither convenient nor accurate.