Within Google-colaboratory, I cannot use matplotlib. use(TkAgg).
The possibility that it offers to me is though very helpful:
I can zoom in my plot interactively and also get a cursor that shows me the present values of x and y where my mouse is hovering over.
Is there anything similar within iPython / Jupyter that has a similar functionality?
%matplotlib notebook(comes with matplotlib) or%matplotlib widget(needs ipympl installed)!pip install mpld3import mpld3mpld3.enable_notebook()does offer some functionality (namely: zooming and moving the plot). A value help for the hovered mouse is missing though.