graph_objects (1) 썸네일형 리스트형 [plotly] plotly.graph_objects 로 차트 그리기 라이브러리 로드 import plotly.graph_objects as go import plotly.offline as pyo pyo.init_notebook_mode() 기본그리기 차트 종류는 아래 사이트에서 확인 할 수 있습니다. Basic Chart : https://plotly.com/python/basic-charts/ Statistical Chart : https://plotly.com/python/statistical-charts/ fig = go.Figure() fig.add_trace( go.Bar( x = df.index, y = df["A"] ) ) fig.show() 다중 그래프 그리기 fig = go.Figure() fig.add_trace( go.Bar( x = df.index.. 이전 1 다음