와인가격예측 썸네일형 리스트형 취미로 하는 데이터 분석 시리즈04-2(기원후 1000년에 와인을 만들었다면 그 가격은 얼마일까?) In [1]: import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns 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 [10]: wine = pd.read_csv('./wine.csv') In [11]: wine.head() Out[11]: Unnamed: 0 Unnamed: 0.1 country d.. 더보기 이전 1 다음