-
파이썬을 활용한 엑셀 데이터 분석(1) - 막대그래프Develope/Python 2019. 6. 5. 16:22
import pandas as pd import xlwings as xw import matplotlib.pyplot as plt from matplotlib import font_manager, rc, style import numpy as np style.use('ggplot') def KBpriceindex_preprocessing(path, data_type): # path : KB 데이터 엑셀 파일의 디렉토리 (문자열) # data_type : '매매종합', '매매APT', '매매연립', '매매단독', '전세종합', '전세APT', '전세연립', '전세단독' 중 하나 # xlwings 모듈로 엑셀 읽기 wb = xw.Book(path) # sheet 선택 sheet = wb.sheets[data..