R 등급반응모형 (결측치 있는 경우)

Jmnote (토론 | 기여)님의 2021년 10월 8일 (금) 00:06 판 (새 문서: ==개요== ;R 등급반응모형 (결측치 있는 경우) <syntaxhighlight lang='r' notebook=ltm> df <- read.csv("https://raw.githubusercontent.com/jmnote/zdata/master/github.com/er...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

R 등급반응모형 (결측치 있는 경우)
df <- read.csv("https://raw.githubusercontent.com/jmnote/zdata/master/github.com/eribean/girth/src/test/polytomous_grm_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 <- grm(df)
coef(fit)

2 같이 보기

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