Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコードを使用して、それぞれの列名に「OBJ」を含む df のすべての列を削除します。
d = pd.read_csv(url) df = d[d.columns.drop(list(d.filter(regex='OBJ')))]
「REV_OBJ」と呼ばれる特定の変数を除いて、列名に「OBJ」という文字が含まれるすべての変数を削除したいと思います。
「REV_OBJ」以外のすべての「OBJ」を削除する方法はありますか?