Literate PythonPlot.jl

import PythonPlot as plt
using Random
Random.seed!(2022)
Random.TaskLocalRNG()
plt.figure()
plt.plot(1:5, rand(1:6, 5))
plt.gcf()


This notebook was generated using Literate.jl.

Back to top