프랑스 와인 썸네일형 리스트형 취미로 하는 데이터 분석 시리즈04-1(와인 가격 데이터 분석) In [1]: import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn In [2]: from matplotlib import font_manager, rc font_path = "C:\Windows\Fonts\gulim.ttc" font = font_manager.FontProperties(fname=font_path).get_name() rc('font', family=font) In [3]: wine = pd.read_csv('./datas/winemag-data-130k-v2.csv') In [4]: wine.head() Out[4]: Unnamed: 0 country de.. 더보기 이전 1 다음