신뢰구간

Python/Study

[Python / Study] Seaborn Barplot Errorbar Parameter

1. 코드 fig, ax = plt.subplots(nrows = 1, ncols = 2, figsize = (16, 5)) ax0 = sns.barplot(x = 'day', # x축 y = 'total_bill', # y축 data = tips, # 데이터 errorbar = None, # ? color = 'lightgray', # 색 alpha = 0.85, # 투명도 ax = ax[0] ) plt.show() x축은 tips 데이터의 day y축은 tips 데이터의 total_bill 데이터는 tips errorbar는 None color는 lightgray aplha = 0.85 ax = ax[0] 2. Seaborn 홈페이지 errorbar errorbar : string, (string, ..

Sukyung Jang
'신뢰구간' 태그의 글 목록