gpt4 book ai didi

R:TM 包从单列中查找词频

转载 作者:行者123 更新时间:2023-12-05 09:22:06 26 4
gpt4 key购买 nike

我最近一直在尝试使用 tm 包在 R 中的 data.frame 中的单个列中查找词频。虽然 data.frame 本身有许多基于数字和字符的列,但我只对一个纯文本列感兴趣。虽然我在清理文本本身时没有遇到问题,但当我尝试使用 findFreqTerms() 命令提取词频时,我收到以下错误:

Error: inherits(x, c("DocumentTermMatrix", "TermDocumentMatrix")) is not TRUE

我的意思是说我需要将我的数据转换为 DocumentTermMatrixTermDocumentMatrix,但是因为我只有一个列在工作有了,我也无法创建。错误如下:

> Test <- DocumentTermMatrix(Types)
Error in UseMethod("TermDocumentMatrix", x) :
no applicable method for 'TermDocumentMatrix' applied to an object of class "c('PlainTextDocument', 'TextDocument')"

有没有办法从单列中获取频率计数?我在下面粘贴了我的完整代码,并对我采取的每个步骤进行了解释。我很感激你们能给我的任何帮助。

> # extracting the single column I wish to analyse from the data frame
Types <-Expenses$Types
> # lower all cases
Types <- tolower(Types)
> # remove punctuation
Types <- removePunctuation(Types)
> # remove numbers
Types <- removeNumbers(Types)
> # attempting to find word frequency
findFreqTerms(Types)
Error: inherits(x, c("DocumentTermMatrix", "TermDocumentMatrix")) is not TRUE

最佳答案

如果使用 qdap 包,您可以直接从文本变量中找到术语的频率:

library(qdap)
a <- c("hello man", "how's it going", "just fine", "really fine", "man o man!")
a <- tolower(a)
a <- removePunctuation(a)
a <- removeNumbers(a)
freq_terms(a) # there are several additional arguments
WORD FREQ
1 man 3
2 fine 2
3 going 1
4 hello 1
5 hows 1
6 it 1
7 just 1
8 o 1
9 really 1

关于R:TM 包从单列中查找词频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28722718/

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