빅데이터 분석 절차 2. 데이터 전처리 (EDA : 탐색적 데이터 분석) 컬럼명 해석. 변수명. 정의. ▷ 상위, 하위 5개의 컬럼 확인. df_t.head(5) df_t.tail(5) ▷ 데이터의 정보 확인. df_t.dtypes df_t.shape df_t.info() # # RangeIndex: 891 entries, 0 to 890 # Data columns (total 15 columns): # # Column Non-Null Count Dtype # --- ------ -------------- ----- # 0 survived 891 non-null int64 # 1 pclass 891 non-null int64 # 2 sex 891 non-null object # 3 age 714 non-..