在 sjmisc / sjPlot r 包中,我有一个变量,其中并非所有值都有“值标签”。参见示例:
library ("sjmisc")
library ("sjPlot")
agreement <- sample (1:5, 40, replace = TRUE)
agreement <- set_labels(agreement, c(`1` = "Full agree",`5` = "Full disagree"))
当我要求提供频率表时,一些信息会丢失:
sjt.frq(agreement)
这就是你得到的:
data
value N raw % valid % cumulative %
Full agree 4 10.00 10.00 10.00
2 7 17.50 17.50 27.50
missings 0 0.00
total N=11 · valid N=11 · x̄=3.40 · σ=1.22
有什么帮助吗?非常感谢您提前