こんな感じで新しい説明変数を作れます
意外と精度上がります
new_column = "hour_age"
meta_df[new_column] = meta_df["hour"].astype(str).str.cat(meta_df["age"].astype(str), sep = '_')
Go to list of users who liked
More than 3 years have passed since last update.
こんな感じで新しい説明変数を作れます
意外と精度上がります
new_column = "hour_age"
meta_df[new_column] = meta_df["hour"].astype(str).str.cat(meta_df["age"].astype(str), sep = '_')
Register as a new user and use Qiita more conveniently
Go to list of users who liked