このパッケージではIRTの分析に使える関数を使用できます。一部の関数を使用するためにはRtoolsなどのコンパイラをPCにインストールする必要があります。(最終更新:2019/04/09)
This package contains some useful function for IRT analysis. It is necessary to install c++ compiler(Rtool etc.) in your PC.
"estip" is a function for marginal maximum likelihood (MML) estimation of item parameter. For binary response data only. MML via EM is a standard estimation method in IRT item parameter estimaiton.
この関数はEMアルゴリズムを用いた周辺最尤推定法により項目パラメタを推定するためのものです。
devtools::install_github("takuizum/irtfun2", dependencies = TRUE)
library(irtfun2)
# estimation item parameter using simulation data in irtfun2 package.
# 2 parameter logistic model
res <- estip2(sim_dat_2, model = "2PL", fc = 2)
res$para # estimated item parametes(data.frame)
res$se # standard error(data.frame)
"estheta" is a function for estimating MLE, EAP, MAP and PVs. Rejection sampling method is implemented for PVs sub routine.
この関数では'estip'などを使用して推定した項目パラメタを使って,受験者特性値\thetaを推定することができます。使用できるオプションにはMLE(最尤推定法),EAP(事後分布期待値),MAP(事後分布最頻値),PVs(推算値)があります。推算値の計算には棄却サンプリング法とスライスランプリングを使用しています。
この関数は一般項目反応モデルに基づいて項目パラメタと受検者の能力パラメタ,能力パラメタの標準偏差($\phi$)などを推定します。現時点では推定の標準誤差や適合度には対応していませんが,今後対応予定です。
筆者の英語とパッケージ作成の技術力が乏しいせいで,マニュアルを見ただけではどう使って良いかがよく分からない仕様になっています。興味のある方は直接筆者(澁谷,sep10.taku.izum(at)gmail.com)にご連絡ください。(at)を@に変えてください。
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.