我正在R中工作。我正在使用ltm()
软件包。这是我的代码:
datascores <- read.table("data.csv", header=TRUE, sep=",")
View(datascores) ## shows let's say 100
fitini <- rasch(datascores)
score <- factor.scores(fitini)
View(score) ## shows not 100, but less
最后,我发现该函数合并了一些具有相同值的行。如何使其不合并?