Subplots in Plots.jl with separate legend

You can always hack it together with layout and an extra subplot.

plot(
    plot(rand(100,3), legend = false), 
    plot((1:3)', legend = true, framestyle = :none)
    )
2 Likes