如下,我想使用以下方法计算词间的cosine距离
<br />
corpus=Corpus(VectorSource(text))<br />
tdm = TermDocumentMatrix(corpus,control = list(stopwords=stopwords("mesh"), weighting = weightTfIdf,tolower = FALSE))<br />
tdm_dist = dissimilarity(tdm, method = "cosine")<br />
</p>
但是算出的结果是文档之间的相似度,请问如何才能计算词之间的cosine?
希望各位老师帮助,感激不尽!