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