カテゴリ変数の変換 2018年1月15日 by 河副 太智 Leave a Comment タイタニックのデータmaleを1、femaleを0に変換し、 搭乗地域S,C,Qを0,1,2に変換 #カテゴリ変数の変換 df['Sex'] = df['Sex'].apply(lambda x: 1 if x == 'male' else 0) df['Embarked'] = df['Embarked'].map( {'S': 0, 'C': 1, 'Q': 2} ).astype(int) 123 #カテゴリ変数の変換df['Sex'] = df['Sex'].apply(lambda x: 1 if x == 'male' else 0)df['Embarked'] = df['Embarked'].map( {'S': 0, 'C': 1, 'Q': 2} ).astype(int) Tweet [`yahoo` not found]
コメントを残す