data visualization (18) 썸네일형 리스트형 [plotly] iplot 으로 line chart 그리기 라이브러리 로드 import chart_studio.plotly as py import cufflinks as cf cf.go_offline(connected = True) line chart 그리기 df.iplot(kind = "line") kind 에 line 대신 scatter 를 사용해도 동일한 line chart 가 그려집니다. (mode 등 세부사항도 동일하게 적용 됩니다.) df.iplot(kind = "scatter") line chart mode : lines (default) df.iplot(kind = "line", mode = "lines) line chart mode : markers df.iplot(kind = "line", mode = "markers") line chart m.. [plotly] iplot 으로 bar chart 그리기 라이브러리 로드 import chart_studio.plotly as py import cufflinks as cf cf.go_offline(connected=True) bar chart 그리기 df.iplot(kind = "bar") bar chart mode : group (default) df.iplot(kind = "bar", barmode = "group") bar chart mode : stack (누적 그래프) df.iplot(kind = "bar", barmode = "stack") bar chart mode : overay (겹쳐서 그리기) df.iplot(kind = "bar", barmode = "overlay") Series 로 bar chart 그리기 df["A"].iplot(ki.. 이전 1 2 3 다음