我使用ggplot的ggcorr
使用以下命令我有序数和数字的输出变量。 “等级”有五个数值,排名:1,2,3,4,5
data$grade<− as.factor(data$grade)
当我运行下面的命令时 - 它无法计算Spearman系数消息 - 它是说“等级”不是数字。
ggcorr(RedWQ[, 2:13], method = c("all.obs", "spearman"),
nbreaks = 4, palette = "RdGy", label = TRUE,
name = "Spearman correlation coeff. (ρ)", hjust = 0.66, size = 2.4)+
ggtitle("Spearman Correlation coefficient Matrix")
我想计算连续变量和序数变量之间的相关系数。