R 1모수 모형 (결측치 있는 경우)

1 개요[ | ]

R 1모수 모형 (결측치 있는 경우)
df <- read.csv("https://raw.githubusercontent.com/jmnote/zdata/master/github.com/eribean/girth/src/test/dichotomous_onepl_missing.csv",header=FALSE)
df <- t(df)
df[df == -99999] = NA
rownames(df) <- NULL
colnames(df) <- paste0('item',1:10)
str(df)
library(ltm)
fit <- rasch(df)
coef(fit)

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}