###Juliaのグラフで凡例を枠外に表示
凡例がグラフの中に入って見にくい。
例:
plot(time,[Cx1 Cx2 Cx3 Cx4],label=["Cx(1,-1)" "Cx(1,0)" "Cx(1,1)" "Cx(2,-2)" ])
解消例として、
例:
plot(time,[Cx1 Cx2 Cx3 Cx4],label=["Cx(1,-1)" "Cx(1,0)" "Cx(1,1)" "Cx(2,-2)" , legend = :outertopleft ])
参考URL:
How to move the legend to outside the plotting area in Plots.jl (GR)?