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.
いくつかのインデックスが文字列値であるデータフレームがあります。インデックスが文字列値または非整数であるデータの行を削除するにはどうすればよいですか?ご協力いただきありがとうございます。
ブール値のインデックスを使用することをお勧めします。
mask = frame.index.map(lambda x: not isinstance(x, str)) frame = frame[mask]