h = df.hist(figsize=(12, 12))
#12~23번째 행까지 그리기
h = df.iloc[:, 12:24].hist(figsize(12, 12))
#bins 옵션으로 막대 개수 잘게 그리기
h = df.iloc[:, 12:24].hist(figsize(12, 12), bins=100)


sns.countplot(x="음주여부", data=df)
sns.countplot(x="음주여부", data=df, hue="성별코드")


# 크기 조절
plt.figure(figsize=(15,4))
sns.countplot(data=df, x="신장(5Cm단위)")