Subplots
using Plots
inspectdr()
Use the layout
keyword, and optionally the convenient @layout
macro to generate arbitrarily complex subplot layouts.
l = @layout([a{0.1h}; b [c; d e]])
plot(randn(100, 5), layout = l, t = [:line :histogram :scatter :steppre :bar], leg = false, ticks = nothing, border = :none)
This page was generated using DemoCards.jl and Literate.jl.