0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Julia 凡例の枠外表示

Posted at

###Juliaのグラフで凡例を枠外に表示

凡例がグラフの中に入って見にくい。
例:

plot(time,[Cx1 Cx2 Cx3 Cx4],label=["Cx(1,-1)" "Cx(1,0)" "Cx(1,1)" "Cx(2,-2)" ])

in_ex0840_cell1_Cx_ROI.png

解消例として、
例:

plot(time,[Cx1 Cx2 Cx3 Cx4],label=["Cx(1,-1)" "Cx(1,0)" "Cx(1,1)" "Cx(2,-2)" , legend = :outertopleft ])

out_ex0840_cell1_Cx_ROI.png

参考URL:
How to move the legend to outside the plotting area in Plots.jl (GR)?

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?