Python
Python - Pandas 여러 그래프 시각화
from turtle import bgcolor import matplotlib import pandas as pd import matplotlib.pyplot as plt from matplotlib import font_manager, rc df = pd.read_csv("C:/Users/Hoon/Desktop/엔코아 파이썬/데이터 시각화/auto-mpg.csv") df.columns = ['mpg','cylinders','displacement','horsepower','weight','acceleration','model year','origin','name'] df.fillna(method='ffill',inplace=True) # 한글 폰트 세팅 font_path = "./malgun.TTF"..
2022. 9. 30. 16:43