Is it possible to, having two plots, lets say:
using Plots
p1 = plot(rand(10))
p2 = plot(rand(10))
use p1
and p2
as subplots now of another plot:
p3 = plot(layout=(2,1))
plot!(p3, ???? ) # use p1 as first subplot, etc.
Oh, found it: https://docs.juliaplots.org/latest/layouts/#Adding-Subplots-incrementally
Leandro Martínez has marked this topic as resolved.
Last updated: Nov 06 2024 at 04:40 UTC