Plotting with PythonPlot.jl

Plotting with PythonPlot.jl#

Using Literate.jl

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

This notebook was generated using Literate.jl.