본문 바로가기

Data Visualization/Plotly

[plotly] iplot 으로 line chart 그리기

728x90

라이브러리 로드

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 mode : lines + markers

line chart 선 채우기

df.iplot(kind = "line", fill = True)

 

line chart 의 세부 내용은 cf.help("line") 또는 cf.help("scatter")에서 확인 하실 수 있습니다.

 

cf.help("line")
cf.help("scatter")
728x90