我使用的是ltm库中的rasch模型,它要求一个约束作为其参数之一,我尝试定义我的约束为1(假设我的判别式为1),当我运行代码,我得到一个“未使用的参数”错误,它显示了整个约束。
rasch(dep, constraint = cbind(ncol(dep) + 1, 1))
我尝试将参数移至新变量
disc <- cbind(ncol(LSAT) + 1, 1)
仅运行一次就会导致新的错误
cycle k= 1
Error in if (abs(deltab) < convb) { :
missing value where TRUE/FALSE needed
In addition: Warning messages:
1: In mean.default(b) : argument is not numeric or logical: returning
NA
2: In if (abs(deltab) < convb) { :
the condition has length > 1 and only the first element will be used