728x90
도형 결합
여러 도형을 결합하기 위해서 원하는 도형 형식으로 정의해주면 됩니다.
x = np.random.randn(5)
y = np.random.randn(5)
p = figure(plot_width=400, plot_height=400)
p.circle(x, y, fill_color="white", size = 20)
p.asterisk(x, y, fill_color="white", size = 20)
p.line(x, y, line_width=2)
show(p)
.
'bokeh' 카테고리의 다른 글
[bokeh] 축 유형 지정 (Specifying Axis Types) (0) | 2020.10.05 |
---|---|
[bokeh] 범위 지정 (Setting Ranges) (0) | 2020.10.05 |
[bokeh] 쐐기, 원호 (Wedges, Arcs) (0) | 2020.10.05 |
[bokeh] 세그먼트, 광선(Segments, Rays) (0) | 2020.10.05 |
[bokeh] 이미지 (Images) (0) | 2020.10.05 |