파이썬 Jupyter Notebook 실전 입문 최신 버전 반영 코드 pg 299 - 1
·
Machine Learning/Visualize
그림 6.4.2 생성 코드 from bokeh.plotting import output_notebook, figure, show output_notebook()p = figure(plot_width=400, plot_height=400)p.multi_line([[0, 1, 2], [0, 1, 2]], [[1, 2, 3], [2, 4, 9]], color=['firebrick', 'navy'], line_width=3)show(p)