In IPython Notebook I produce graphics with (for example):
x = [1,2,3,4]
y = [5,6,7,8]
plot(x, y)
When I position the cursor on the generated graph, the tool to resize the graph appears in the lower right corner, but when I resize it it becomes "pixelated":
I can report figure(figsize=(12,8))
before plotting the chart but it does not seem to me the most efficient solution (needs to be specified before each chart). Is there any way to resize graphics on the Notebook interactively without loss of quality?