0
以下のコードでストップワードをデータフレームから削除しようとしています。エラーは発生しませんが、ストップワードはデータフレームから削除されません。例えばストップワードのリスト項目をテキストから削除するには
def stop_words(df):
stop_words = set(["a", "acaba", "altı","alti", "ama", "ancak","bir"])
df['text'] = [word for word in df['text'] if word not in stop_words]
return df.text
df.text = stop_words(df)
[2] "ゲルSEN necektigimi BIRデBANA SOR" であるdf.text .ITは "BIR" 単語を削除しません。これをどうすれば解決できますか?