Plotting with PythonPlot.jl

Plotting with PythonPlot.jl#

With Jupyter notebook.

import PythonPlot as plt
using Random
Random.seed!(2022)
Random.TaskLocalRNG()
plt.plot(1:5, rand(1:6, 5))
Python: [<matplotlib.lines.Line2D object at 0x7f64bdf9cb90>]

This notebook was generated using Literate.jl.