"R 등급반응모형 (결측치 있는 경우)"의 두 판 사이의 차이

(새 문서: ==개요== ;R 등급반응모형 (결측치 있는 경우) <syntaxhighlight lang='r' notebook=ltm> df <- read.csv("https://raw.githubusercontent.com/jmnote/zdata/master/github.com/er...)
 
 
17번째 줄: 17번째 줄:


==같이 보기==
==같이 보기==
* [[R 2모수 모형]]
* [[R 등급반응모형]]
* [[R 1모수 모형 (결측치 있는 경우)]]
* [[R 1모수 모형 (결측치 있는 경우)]]
* [[R 등급반응모형 (결측치 있는 경우)]]
* [[R 2모수 모형 (결측치 있는 경우)]]
* [[Python 등급반응모형 (결측치 있는 경우)]]
* [[Python 등급반응모형 (결측치 있는 경우)]]


[[분류: R 문항반응이론]]
[[분류: R 문항반응이론]]

2021년 10월 8일 (금) 00:06 기준 최신판

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 }}