Pandas 복습 1
·
Data Science/coding pratice
목차 - Series와 DataFrame, 제목컬럼 추가 - csv, excel 파일 불러오기 - 컬럼 및 인덱스 재정의, 지정 (df.columns = [], df.index) - info(), describe(), shape, head(), tail() - index, column 정렬(sort) - Boolean Indexing, isin색인(loc 활용) - 결측값(Null) 알아보기 -df.copy : 그냥 바꿔서 df2 할당하면 기존의 df값도 수치가 계속 바뀜 -row, column 추가하기, 특정 row만 column 값 바꾸기) -통계값(min, max, sum, mean, var, std ...) -pivot_table Import Pandas as pd 1) series •pd.Ser..