5
In Ipython Notebook I produce graphics with (for example):
x = [1,2,3,4]
y = [5,6,7,8]
plot(x, y)
When I place the cursor over the generated graph, the tool appears at the bottom right corner to resize the graph. However, when I resize it becomes "pixelated":
I can inform figure(figsize=(12,8))
before plotting the graph but does not seem to me the most efficient solution (needs to be specified before each graph). Is there any way to resize graphics in Notebook interactively and without loss of quality?
Is it worth a Feature request so you don’t have to use the browser zoom? Or is it svg’s particularity?
– LuizAngioletti
There is an implementation, but it doesn’t work well. Look at this: https://github.com/ipython/ipython/pull/1832/
– rodrigorgs
It was the best solution so far, solves the problem for now. Accepting.
– Renan