Is there a way to make one legend entry per colour? I’d like to specify that green represents plants and brown represents nutrients. I am using Plots.jl
MWE
foo = 1:10; bar = rand(10, 2)
my_plot = plot(foo, bar)
bart = rand(10)
plot!(my_plot, foo, bart,color=1)
So I’d like to have one legend entry for orange and one for blue, even though it plots foo and bart.