using Plots inspectdr() Plots.reset_defaults() #hide using StableRNGs #hide rng = StableRNG(1234) #hide nothing #hide x = 1:5 y = [1, 2, 3, 2, 1] default(shape = :circle) plot(plot(x, y, markershape = :circle, seriestype = :steppre, label = "steppre"), plot(x, y, markershape = :circle, seriestype = :stepmid, label = "stepmid"), plot(x, y, markershape = :circle, seriestype = :steppost, label = "steppost"), layout = (3, 1)) # This file was generated using Literate.jl, https://github.com/fredrikekre/Literate.jl