我正在尝试ahpsurvey
R 中的库。经过多次尝试,我发现对于仅使用一对配对的情况,该模块不会返回任何特征值,如下所示。
eigenmean_lvl2_1 <- ahp(df = ahpscale_lvl2_1,
atts = c("Item1", "Item2"),
negconvert = TRUE,
reciprocal = TRUE,
method = "eigen",
aggmethod = "arithmetic",
qt = 0.2,
censorcr = 0.37,
agg = TRUE)
head(eigenmean_lvl2_1$indpref)
它会给出如下错误:
[1] "Number of observations censored = 1"
Error in array(x, c(length(x), 1L), if (!is.null(names(x))) list(names(x), :
'data' must be of a vector type, was 'NULL'
一开始以为是Consistent Ratio超过了阈值,但是用不同的尺度尝试了几次,还是出现了错误。
任何人都可以对这个问题提供一些见解吗?将不胜感激