728x90
라이브러리 로드
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(kind = "bar")
가로 bar chart 그리기
df.iplot(kind = "bar", orientation = "h")
bar chart 의 세부사항은 cf.help("bar") 에서 확인 할 수 있습니다.
cf.help("bar")
728x90
'Data Visualization > Plotly' 카테고리의 다른 글
[plotly] annotation(주석) 넣기 (0) | 2021.09.28 |
---|---|
[plotly] bar chart 색깔 바꾸기 (0) | 2021.09.28 |
[plotly] plotly.graph_objects 로 차트 그리기 (0) | 2021.09.28 |
[plotly] iplot 차트 세부 요소 변경 하기 (0) | 2021.09.27 |
[plotly] iplot 으로 line chart 그리기 (0) | 2021.09.27 |