I am trying to plot a layout in Julia env using the code below
x = 1:100
y = sin.(rand((Normal()), 100,4))
# plot
plot(x,y)
# layout
plot(x,y, layout = (4,1), color = [:red,:blue])
What I expected was a coloring of each plot with either red or blue. The result was 4 plots that had both red and blue. What am I missing?