데이터 타입
df.dtypes
문자열에서 특정 글자 삭제
글자.replace('삭제할 글자', '대체할 글자 or 공백')
https://www.w3schools.com/python/trypython.asp?filename=demo_ref_string_replace
천단위 숫자의 ',' 제거(정수형, 실수형으로 변환)
thousands=','
def 함수 (예시)
def toInt(string): return int(string.replace(',',''))
column단위로 적용하기
df['열이름'].apply(함수)
모든 데이터에 적용하기
df4.applymap(lambda x: )
apply VS applymap VS map
https://blog.naver.com/youji4ever/222292901767
새로운 feature 만들기 (예시- 열이름 +열이름=새로운 이름)
df['새로운 feature'] = df['열이름1'] + df['열이름2']
결측치를 Mean imputation방법 사용하기
df.fillna(df.mean())
https://workingwithpython.com/howtohandlemissingvaluewithpython/
파이썬 인덱싱하는 법
https://bearwoong.tistory.com/65