我正在使用quanteda
的朴素贝叶斯模型(textmodel_nb
)进行一些文字分类。
模型的输出之一是包含每个类的概率的列表。也就是说,如果nb
是我的模型,我会看到
> str(nb$PcGw)
num [1:2, 1:462] 0.9446 0.0554 0.9259 0.0741 0.2932 ...
- attr(*, "dimnames")=List of 2
..$ classes : chr [1:2] "FALSE" "TRUE"
..$ features: chr [1:462] "hello" "john" "jan" "index" ..
并且在列表中引用类似
的内容 nb$PcGw
features
classes ny john
FALSE 0.94457605 0.92594799
TRUE 0.05542395 0.07405201
我想使用purrr
来提取此信息并提出data_frame
之类的
variable P_TRUE P_FALSE
'ny' 0.05542395 0.94457605
'john' 0.07405201 0.92594799
然而,我无法这样做。有人可以在这里给我一些帮助吗?
这是一个使用quanteda自己的例子的工作示例:
txt <- c(d1 = "Chinese Beijing Chinese",
d2 = "Chinese Chinese Shanghai",
d3 = "Chinese Macao",
d4 = "Tokyo Japan Chinese",
d5 = "Chinese Chinese Chinese Tokyo Japan")
trainingset <- dfm(txt, tolower = FALSE)
trainingclass <- factor(c("Y", "Y", "Y", "N", NA), ordered = TRUE)
## replicate IIR p261 prediction for test set (document 5)
nb_test <- textmodel_nb(trainingset, trainingclass)
str(nb_test$PcGw)
num [1:2, 1:6] 0.659 0.341 0.562 0.438 0.562 ...
- attr(*, "dimnames")=List of 2
..$ classes : chr [1:2] "Y" "N"
..$ features: chr [1:6] "Chinese" "Beijing" "Shanghai" "Macao"
谢谢!
答案 0 :(得分:1)
如果我们需要获取转置并使用%>%
格式化列,请转置矩阵,转换为data.frame
,添加一列rownames(rownames_to_column
)并重命名必要
library(tidyverse)
nb_test$PwGc %>%
t %>%
as.data.frame %>%
rownames_to_column('variable') %>%
rename_at(2:3, ~ paste0("P_", c(TRUE, FALSE)))
基于与OP的沟通,如果我们需要在%>%
内嵌一些语句,请用{}
nb_test$PcGw %>%
t %>%
as.data.frame() %>%
{as_tibble(rownames_to_column(., 'variable'))}
或者只是使用
nb_test$PcGw %>%
t %>%
as.data.frame() %>%
rownames_to_column(., 'variable') %>%
as_tibble()