'데이터 분석/[Python] 기초' 카테고리의 글 목록 (4 Page)
728x90

데이터 분석/[Python] 기초 38

[Python] matplotlib 한글 출력

import matplotlib.pyplot as plt import seaborn as sns import matplotlib %matplotlib inline import platform path = '/Library/Fonts/NanumSquareRegular.ttf' # 개인 컴퓨터에 글꼴 경로에 맞게 설정!! from matplotlib import font_manager, rc if platform.system() == "Darwin": rc('font', family = 'AppleGothic') elif platform.system() == 'Windows': font_name = font_manager.FontProperties(fname=path).get_name() rc('font',..

[Python] 컬럼 타입 변경하기

1) 전체 컬럼 데이터 타입 바꾸기 df = df.apply(pd.to_numeric) 2) 일부 컬럼 데이터 타입 바꾸기 # (1) pd.to_numeric() col = ['나이', '키(cm)', '몸무게'] df[col] = df[col].apply(pd.to_numeric, errors = 'coerce') # 문자열이 포함된 경우 NaN으로 변환하게 함으로써 ValueError 무시하기 # (2) astype() df = df.astype({"나이" : "int", "키(cm)" : "float"}) 3) 한 개 컬럼 데이터 타입 바꾸기 df["나이"] = df["나이"].astype(int)

[Python] 컬럼명 변경하기

1. 컬럼명 전체 수정 df.columns = ["이름", "나이", "주소"] 2. 컬럼명 부분수정 1 df.rename(columns={"A" : "이름"}, inplace = True) # False이면 아무 변화 없음 3. 컬럼명 부분수정 2 df.columns.value[0] = "이름" 4. 컬럼명 부분수정 3 df.rename(columns = {df.columns[0] : "이름"}, inplace = True) # False이면 아무 변화 없음 개인적으로는 1번과 2번을 가장 많이 사용합니다~