Jupyter PythonPlot.jl

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 0x7f910afad160>]

This notebook was generated using Literate.jl.

Back to top