I'm trying to overlay two contour plots in Julia using Plots with PyPlot backend. Is it possible, and, if so, how?
An MWE could look something like this:
using Plots
pyplot()
a = rand(50,50)
b = rand(50,50)
p1 = contour(a,seriescolor=:blues)
p2 = contour(b,seriescolor=:reds)
plot(p1,p2,layout=1)
(This code generates ERROR: When doing layout, n (1) != n_override (2)
. I do understand the error, but I do not know how to get around it.)