막대 그래프
df.iplot(kind='bar')
참고: iplot 과 plot
다음 예제는 환경에 따라 에러가 날 수 있음
- iplot 은 plotly 라이브러리를 사용해서 interactive 한 그래프를 그리는 기능
- plot 은 matplotlib 라이브러리를 사용해서 static 한 그래프를 그리는 기능
import matplotlib.pyplot as plt
df.plot(kind = 'bar')
df.iplot(kind = 'bar')
누적 그래프 옵션(barmode)
cf.help('bar')
df.iplot(kind = 'bar', barmode = 'stack') # barmode = 'stack' 은 누적 그래프
df.iplot(kind = 'bar', barmode = 'overlay') # barmode = 'stack' 은 누적 그래프
Series로 그래프 그리기
df['A'].iplot(kind = 'bar')
가로로 그래프 그리기
df.iplot(kind = 'bar', barmode = 'stack', orientation = 'h')
df['A'].iplot(kind = 'bar', orientation = 'h')
'빅데이터 분석가 양성과정 > Python' 카테고리의 다른 글
plotly (0) | 2024.07.08 |
---|---|
iplot - 선 그래프 / 세부 요소 변경 (0) | 2024.07.08 |
iplot (0) | 2024.07.08 |
공공데이터 분석(커피전문점) - 시각화 (0) | 2024.07.08 |
공공데이터 분석(커피전문점) - 유명 브랜드별 비율 비교하기 (0) | 2024.07.08 |