언어/python

데이터 시각화 ( python 3.x ), bokeh

파아랑새 2018. 6. 14. 08:10
[+] 데이터 시각화 수업때 활용할 



from bokeh.plotting import figure, output_file, show


def main():
output_file("test.html")
# 객체 생성
p = figure()
p.line( [1, 2, 3, 4, 5], [10, 11, 12, 13, 14])
show(p)
if __name__ == "__main__":
main()