탐색적 데이터 분석- 국가별 음주 데이터 분석 import pandas as pdimport numpy as npimport matplotlib.pyplot as pltimport seaborn as sns...데이터 파악drinks = pd.read_csv("./data/drinks.csv")drinks.head() drinks.shape(193, 6) drinks.dtypescountry objectbeer_servings int64spirit_servings int64wine_servings int64total_litres_of_pure_alcohol..