Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inline Interactive Plots with Julia in jupyter notebook

Tags:

python

julia

when I use

%matplotlib notebook
import matplotlib.pyplot as plt

I get interactive plots, i.e. I can also zoom into the figure.

For julia this command does not seem to exist. Any ideas?

like image 664
varantir Avatar asked Sep 03 '25 05:09

varantir


1 Answers

You can get interactive plots by using Plotly, either directly with Plotly.jl or through its Plots backend.

like image 69
tlqmj Avatar answered Sep 04 '25 19:09

tlqmj