Giter VIP home page Giter VIP logo

Comments (15)

tacaswell avatar tacaswell commented on August 22, 2024 3

It shouldn't be a problem, but it is :)

The way that the high-dpi displays are handled is by adding a layer of 'virtual pixels' that unless you opt-out just 'zooms' your bitmaps by 2x. What looks like is happening here is that the js side is correctly opting out, but it is not being threaded through to matplotlib to render the image and double the 'virtual' dpi until after the cell is finished executing.

Until we sort this out splitting everything after plt.show() into a second cell may help.

from ipympl.

malbergo avatar malbergo commented on August 22, 2024 3

Any updates on this front?

from ipympl.

KIC avatar KIC commented on August 22, 2024 3

This bug is now 3 years old and I still have this issue. Are there any plans how this can be fixed?

from ipympl.

tacaswell avatar tacaswell commented on August 22, 2024

Do you have high-dpi display?

from ipympl.

lucainnocenti avatar lucainnocenti commented on August 22, 2024

I do, is that the problem?

from ipympl.

lucainnocenti avatar lucainnocenti commented on August 22, 2024

thanks for the comment @tacaswell. What do you mean exactly by "splitting evething (...) into a second cell"?

from ipympl.

tacaswell avatar tacaswell commented on August 22, 2024

I mean put it in a second cell so the first cell creates and show the figure, the second updates it.

from ipympl.

wjakob avatar wjakob commented on August 22, 2024

I am also running into this issue -- exactly the same plotting mechanism and symptoms (on the latest Anaconda). It would be nice if it wasn't necessary to split the plots in this way when using Retina displays (which is basically all macs nowadays).

from ipympl.

tacaswell avatar tacaswell commented on August 22, 2024

@wjakob The parameter that controls this is https://github.com/matplotlib/jupyter-matplotlib/blob/master/ipympl/backend_nbagg.py#L141 .

I suspect what is happening is:

  • you call show which creates the figure
  • the js side sends a message back to adjust the DPI
  • but the event loop is blocked running your code which loops through and and updates the plot
  • after you loop is done the tornado event loop processes the message to update the DPI ratio which triggers a re-draw which shows you the full size figure.

One (very hackish) solution is to do fig.canvas._dpi_ratio = 2 and just hard-code you are in a hi-dpi enviroment. The more proper solution is to find a way to let the underlying event loop spin, but I do not know how to do that...

from ipympl.

tiehfood avatar tiehfood commented on August 22, 2024

any solution to this problem? fig.canvas._dpi_ratio = 2 doesn't change anything to me

from ipympl.

tacaswell avatar tacaswell commented on August 22, 2024

@tiehfood I think someone needs to look into the communications between the js front end and the python side to sort out when the dpi is negotiated, would you be interested in trying?

The revelant code is likely in https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/backends/backend_webagg_core.py and https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/backends/backend_nbagg.py

from ipympl.

tiehfood avatar tiehfood commented on August 22, 2024

I am no code expert and I have just access to the jupyter front end in this case...

from ipympl.

martinRenou avatar martinRenou commented on August 22, 2024

I tried to find the reason for this issue. I added print statements to the messages handling Python side, and it appears that all the messages (i.e. initialized message, set_dpi_ratio message, resize message) are received/handled only at the end of the animation... I don't know what is the reason for that. Maybe you have an idea @tacaswell ?

from ipympl.

martinRenou avatar martinRenou commented on August 22, 2024

As we are not using the tornado application with ipympl, I suspect the way to fix it would be to get rid of it on the backend

from ipympl.

Wittline avatar Wittline commented on August 22, 2024

Hi Guys,

I was facing the same issue, I was creating different plots into the same cell using a loop, the way I fixed it was putting the fig = plt.figure(figsize=(20, 10)) inside the loop. Now all the plots has the same size into the execution of the same cell. I had it out of the loop before.

Check the example below:

image

from ipympl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.