Odile Bénassy
Odile Bénassy
We are not too far, though: ``` fig = plot(sin).matplotlib() from ipympl.backend_nbagg import new_figure_manager_given_figure new_figure_manager_given_figure(1,fig) ``` gives out expected result ..
And yet, if we do ``` from ipympl.backend_nbagg import Canvas Canvas(fig) ``` nothing appears
Should work well with 2D plots.
Ok for me
My own experience on Linux is that you cannot copy (unix-style, just with the mouse) from a notebook and paste into another application (e.g. into the terminal, text editor ..)....
Hi At least you can use CSS classes. Like: ``` %%html .myclass { color:red ; font-size:200%} ``` --- ``` from ipywidgets import Button, Layout b = Button(description = 'x', style...