gpt4 book ai didi

python - 需要帮助将 Python 转换为 R 来处理文本数据

转载 作者:行者123 更新时间:2023-11-30 22:27:21 25 4
gpt4 key购买 nike

我正在尝试创建一个数据集,该数据集仅保留一个数据集中存在于另一个数据集中的单词。我知道如何在 Python 中执行此操作,但需要在 R 中执行此操作。这是两个示例数据集。我想从 text_A 返回 text_B 中存在的单词。

text_A= ['apple','cherry','kiwi','Tangerine','apple','apple','kiwi']
text_B= ['apple','banana','grapefruit','kiwi','mango','papaya', 'tangerine']

combined_words= [ ]
for x_words in text_A:
if x_words in text_B:
combined_words.append(x_words)

print(combined_words)

输出应该是:“苹果”、“猕猴桃”、“苹果”、“苹果”、“猕猴桃”

最佳答案

text_A <- c('apple','cherry','kiwi','Tangerine','apple','apple','kiwi')
text_B <- c('apple','banana','grapefruit','kiwi','mango','papaya', 'tangerine')

text_A[text_A %in% text_B]
## [1] "apple" "kiwi" "apple" "apple" "kiwi"

关于python - 需要帮助将 Python 转换为 R 来处理文本数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46945281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com