Hi,
I'm gathering interest in Plots.jl in order to make complex plotting
structures. Just as an example, I have a set of data (called y) and some
operations performed on it, stored in arrays of obvious names y2, logy,
expy etc...
I have managed to create something that displays one curve per plot
lay = @layout [ a{0.4w} grid(2,2) ]
plot(
[y y2 sqrty logy expy],
layout = lay,
grid = [true false false false false],
title = ["y" "y^2" "sqrt(y)" "log(y)"
"exp(y)"],titleloc="center",titlefont=font(12),
xlims = [(0,12) (0,10) (0,20) (0,20) (0,12) ],
)
which puts one curve in each plot. What would be the needed modifications
here in order to
plot y and cosy in the first plot, and sqrty and siny on the second plot?
Thanks for your help,
Ferran.