Home > パンダス


パンダのデータフレームからユニークな単語を取得する方法

データフレームの特定の列からユニークな単語を抽出する方法:import pandas as pd import re # データフレームの作成 df = pd.DataFrame({'text': ['This is a sample text', 'Another text example', 'Some more text']}) # ユニークな単語を格納するセットを作成 unique_words = set() # 各行のテキストデータから単語を抽出し、セットに追加する for index, row in df.iterrows(): words = re.findall(r'\>>More