barplot 기본형
sort_values로 정렬
차종(category)이 suv고 제조업체별로 cty(도심에서 연비) 평균이 높은 순서대로 정렬에서 barplot으로 만들기
city_mean = mpg.query('category == "suv"').groupby('manufacturer', as_index = False).agg(cty_mean = ('cty', 'mean')) \
.sort_values('cty_mean', ascending=False)
city_mean.head(5)
category뱔 빈도 표현 막대그래프
df = mpg.groupby('category', as_index = False).agg(n=('category', 'count')).sort_values('n', ascending= False)
sns.barplot(data = df, x='category', y='n')
매우 심플한 방법.
'파이썬. 데이터분석 > Seaborn' 카테고리의 다른 글
Seaborn : sns.lineplot 시계열 그래프, pd.to_datetime (0) | 2022.07.31 |
---|---|
Seaborn : sns.countplot (0) | 2022.07.30 |
Seaborn : scatterplot xlim (0) | 2022.07.30 |
Seaborn : boxplot, 이상값 제거(1.5IQR) (0) | 2022.07.28 |
◆Seaborn : figure-level, axes-level 차이 (0) | 2022.07.19 |