![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fk47Yj%2Fbtsar5YkUOh%2FgrVKxzt5aXki0d5ftWnM30%2Fimg.png)
[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, ..