from plotly.subplots import make_subplots
import plotly.graph_objects as go
fig = make_subplots(rows=1, cols=3)
df_bar = df_bar.sort_values('lsr_work', ascending=False)
fig.add_trace(go.Bar(x=df_bar.index, y=df_bar['lsr_work'], name='평일 여가시간'),
row=1, col=1)
df_bar = df_bar.sort_values('lsr_weekend', ascending=False)
fig.add_trace(go.Bar(x=df_bar.index, y=df_bar['lsr_weekend'], name='주말 여가시간'),
row=1, col=2)
df_bar = df_bar.sort_values('lsr_tot', ascending=False)
fig.add_trace(go.Bar(x=df_bar.index, y=df_bar['lsr_tot'], name='1주간 총 여가시간'),
row=1, col=3)
fig.show()
'Python' 카테고리의 다른 글
Python 으로 압축파일 풀기 (0) | 2022.12.31 |
---|