繼續我對文本分析的探索,我遇到了另一個障礙。我瞭解邏輯,但不知道如何在R中執行此操作。 下面是我想要做的: 我有2個CSV - 1.包含10,000條評論2.包含單詞列表 我想選擇所有包含第二個CSV中任何單詞的評論。我該怎麼辦?只從評論列表中提取相關評論
例如:
**CSV 1:**
this is a sample set
the comments are not real
this is a random set of words
hope this helps the problem case
thankyou for helping out
i have learned a lot here
feel free to comment
**CSV 2**
sample
set
comment
**Expected output:**
this is a sample set
the comments are not real
this is a random set of words
feel free to comment
請注意: 不同形式的話也被認爲是,例如,評論和意見都被認爲。
兩者分別是評論和單詞列表 – eclairs
你可以讓你的例子重現嗎? – Sotos