从 R 中的文档术语矩阵恢复原始数据

发布于 2025-01-11 07:27:47 字数 461 浏览 0 评论 0原文

我想知道在将其制作为文档术语矩阵后是否有办法返回到我的原始数据库(df)。

这是我想做的一个例子。

df <- data.frame(group=c("A","A","B","B","C"),
                 comment = c("hello world","hello friend","one world","one friend","hello friend"))

my_cor <- tm::Corpus(VectorSource(df$comment))
my_tdm <- tm::DocumentTermMatrix(my_cor, control = list(minWordLength = 1))
final_matrix <- as.matrix(my_tdm)

我想将“final_matrix”转换为“df”。

我希望有人能帮助我,非常感谢。

I want to know if there is a way to go back to my original database (df) after I have made it a document term matrix.

Here is an example of what I want to do.

df <- data.frame(group=c("A","A","B","B","C"),
                 comment = c("hello world","hello friend","one world","one friend","hello friend"))

my_cor <- tm::Corpus(VectorSource(df$comment))
my_tdm <- tm::DocumentTermMatrix(my_cor, control = list(minWordLength = 1))
final_matrix <- as.matrix(my_tdm)

I want to transform "final_matrix" to "df".

I hope someone can help me, thank you very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文