logo

ジュリアでのマーカーとラインスタイルのリスト 📂ジュリア

ジュリアでのマーカーとラインスタイルのリスト

コード 1

長々と説明する必要はなく、文字通りマーカースタイルとラインスタイルが実際にどう見えるかを示す。

linesytle

[:auto, :solid, :dash, :dot, :dashdot, :dashdotdot] の中から一つ選ぶ。

plot_1.svg

shape

[:none, :auto, :circle, :rect, :star5, :diamond, :hexagon, :cross, :xcross, :utriangle, :dtriangle, :rtriangle, :ltriangle, :pentagon, :heptagon, :octagon, :star4, :star6, :star7, :star8, :vline, :hline, :+, :x] の中から一つ選ぶ。

plot_4.svg

全体のコード

using Plots

lines = [:auto, :solid, :dash, :dot, :dashdot, :dashdotdot]
plt = plot(grid = :none, showaxis = :false, legend = :outerright)
for k in 1:6
    plot!(plt, [0, 1], [-k, -k], lw = 2, color = :black, linestyle = lines[k], label = string(lines[k]))
end
plt

shapes = [:none, :auto, :circle, :rect, :star5, :diamond, :hexagon, :cross, :xcross, :utriangle, :dtriangle, :rtriangle, :ltriangle, :pentagon, :heptagon, :octagon, :star4, :star6, :star7, :star8, :vline, :hline, :+, :x]
plot(grid = :none, showaxis = :false, xlims = (-0.1,4), size = (600, 600))
scatter!((0:23) .% 4, -(0:23) .÷ 4, shape = shapes, color = :black, legend = :none, markersize = 10)
annotate!(.15 .+ ((0:23) .% 4), -(0:23) .÷ 4, text.(shapes, :left))

環境

  • OS: Windows
  • julia: v1.8.5
  • Plots v1.38.5