1
符號(list.i)
我最近從迷幻包中的R運行scoreItems功能時接收此錯誤:錯誤按鍵[ABS(list.i)中,i] <在scoreItems
Error in keys[abs(list.i), i] <- sign(list.i) :
number of items to replace is not a multiple of replacement length
這是我重複的例子:
mykey <- data.frame(scale1 = c(0,1,1), scale2 = c(1,1,0))
mydata <- data.frame(item1 = c(1,1,2,3,5), item2 = c(5,5,5,4,3),
item3 = 1:5)
test <- scoreItems(mykey, mydata) # throws error
運行的代碼時,我曾經沒有錯誤,我得到的錯誤。我已經升級到版本1.6.12的包。
什麼原因導致錯誤?