自分がpandasの列名から条件で列を抽出する方法をよく忘れるのでメモ
new_list.py
new_list = [x for x in data.columns if 'liquid_' in x]
display(df[new_list])
Go to list of users who liked
More than 3 years have passed since last update.
自分がpandasの列名から条件で列を抽出する方法をよく忘れるのでメモ
new_list = [x for x in data.columns if 'liquid_' in x]
display(df[new_list])
Register as a new user and use Qiita more conveniently
Go to list of users who liked