[rkward-cvs] SF.net SVN: rkward:[2415] trunk/rkward
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Thu Mar 26 20:34:29 UTC 2009
Revision: 2415
http://rkward.svn.sourceforge.net/rkward/?rev=2415&view=rev
Author: tfry
Date: 2009-03-26 20:34:28 +0000 (Thu, 26 Mar 2009)
Log Message:
-----------
Move IRT plugins to a pluginmap of their own, and out of under development
Modified Paths:
--------------
trunk/rkward/ChangeLog
trunk/rkward/rkward/plugins/all.pluginmap
trunk/rkward/rkward/plugins/under_development.pluginmap
Added Paths:
-----------
trunk/rkward/rkward/plugins/irt.pluginmap
Modified: trunk/rkward/ChangeLog
===================================================================
--- trunk/rkward/ChangeLog 2009-03-26 20:32:28 UTC (rev 2414)
+++ trunk/rkward/ChangeLog 2009-03-26 20:34:28 UTC (rev 2415)
@@ -6,6 +6,7 @@
- Fix device window capturing with R 2.8.0
- Extended Boxplot plugin
- Internal code change in Barplot plugin
+- New set of plugins: Item Response Theory (by Meik Michalke)
--- Version 0.5.0b - Apr-20-2008
- Support compilation with R 2.7
Modified: trunk/rkward/rkward/plugins/all.pluginmap
===================================================================
--- trunk/rkward/rkward/plugins/all.pluginmap 2009-03-26 20:32:28 UTC (rev 2414)
+++ trunk/rkward/rkward/plugins/all.pluginmap 2009-03-26 20:34:28 UTC (rev 2415)
@@ -6,4 +6,5 @@
<require file="distributions.pluginmap"/>
<require file="plots.pluginmap"/>
<require file="x11device.pluginmap"/>
+ <require file="irt.pluginmap"/>
</document>
Added: trunk/rkward/rkward/plugins/irt.pluginmap
===================================================================
--- trunk/rkward/rkward/plugins/irt.pluginmap (rev 0)
+++ trunk/rkward/rkward/plugins/irt.pluginmap 2009-03-26 20:34:28 UTC (rev 2415)
@@ -0,0 +1,82 @@
+<!DOCTYPE rkpluginmap>
+
+<document base_prefix="" namespace="rkward">
+ <components>
+ <component type="standard" id="par_est_rasch" file="analysis/irt/dichotomous/par_est_rasch.xml" label="Rasch model fit" />
+ <component type="standard" id="par_est_2pl" file="analysis/irt/dichotomous/par_est_2pl.xml" label="Two parameter logistic model fit" />
+ <component type="standard" id="par_est_3pl" file="analysis/irt/dichotomous/par_est_3pl.xml" label="Birnbaum three parameter model fit" />
+ <component type="standard" id="par_est_lltm" file="analysis/irt/dichotomous/par_est_lltm.xml" label="Linear logistic test model fit" />
+
+ <component type="standard" id="par_est_grm" file="analysis/irt/polytomous/par_est_grm.xml" label="Graded response model fit" />
+ <component type="standard" id="par_est_rsm" file="analysis/irt/polytomous/par_est_rsm.xml" label="Rating scale model fit" />
+ <component type="standard" id="par_est_pcm" file="analysis/irt/polytomous/par_est_pcm.xml" label="Partial credit model fit" />
+ <component type="standard" id="par_est_lrsm" file="analysis/irt/polytomous/par_est_lrsm.xml" label="Linear rating scale model fit" />
+ <component type="standard" id="par_est_lpcm" file="analysis/irt/polytomous/par_est_lpcm.xml" label="Linear partial credit model fit" />
+
+ <component type="standard" id="ltm_cronbach_alpha" file="analysis/irt/tests/ltm_cronbach_alpha.xml" label="Cronbach's alpha" />
+
+ <component type="standard" id="ltm_gof_rasch" file="analysis/irt/tests/ltm_gof_rasch.xml" label="Goodness of Fit (Rasch)" />
+ <component type="standard" id="ltm_unidimensional" file="analysis/irt/tests/ltm_unidimensional.xml" label="Unidimensionality check (Rasch, LTM, 3PM)" />
+ <component type="standard" id="ltm_item_fit" file="analysis/irt/tests/ltm_item_fit.xml" label="Item-fit statistics (Rasch, LTM, 3PM)" />
+ <component type="standard" id="ltm_person_fit" file="analysis/irt/tests/ltm_person_fit.xml" label="Person-fit statistics (Rasch, LTM, 3PM)" />
+ <component type="standard" id="eRm_waldtest" file="analysis/irt/tests/eRm_waldtest.xml" label="Wald test (RSM, PCM)" />
+ <component type="standard" id="eRm_plotLR" file="plots/irt/tests/eRm_plotLR.xml" label="Andersen LR Plot (RSM, PCM)" />
+
+ <component type="standard" id="plot_rasch" file="plots/irt/dichotomous/plot_rasch.xml" label="Plot fitted Rasch model" />
+ <component type="standard" id="plot_ltm" file="plots/irt/dichotomous/plot_ltm.xml" label="Plot fitted two parameter logistic model" />
+ <component type="standard" id="plot_tpm" file="plots/irt/dichotomous/plot_tpm.xml" label="Plot fitted Birnbaum three parameter model" />
+
+ <component type="standard" id="plot_grm" file="plots/irt/polytomous/plot_grm.xml" label="Plot fitted graded response model" />
+ <component type="standard" id="plot_rsm" file="plots/irt/polytomous/plot_rsm.xml" label="Plot fitted rating scale model" />
+ <component type="standard" id="plot_pcm" file="plots/irt/polytomous/plot_pcm.xml" label="Plot fitted partial credit model" />
+ </components>
+
+ <hierarchy>
+ <menu id="file" label="File">
+ <menu id="import" label="Import" index="4">
+ </menu>
+ <menu id="export" label="Export" index="5">
+ </menu>
+ </menu>
+ <menu id="analysis" label="Analysis" index="4">
+ <menu id="menu_irt" label="Item Response Theory" index="4">
+ <menu id="menu_dichot" label="Dichotomous data" index="1">
+ <entry component="par_est_rasch" />
+ <entry component="par_est_2pl" />
+ <entry component="par_est_3pl" />
+ <entry component="par_est_lltm" />
+ </menu>
+ <menu id="menu_poly" label="Polytomous data" index="2">
+ <entry component="par_est_grm" />
+ <entry component="par_est_rsm" />
+ <entry component="par_est_pcm" />
+ <entry component="par_est_lrsm" />
+ <entry component="par_est_lpcm" />
+ </menu>
+ <menu id="menu_tests" label="Tests" index="3">
+ <entry component="ltm_gof_rasch" />
+ <entry component="ltm_unidimensional" />
+ <entry component="ltm_item_fit" />
+ <entry component="ltm_person_fit" />
+ <entry component="eRm_waldtest" />
+ <entry component="eRm_plotLR" />
+ </menu>
+ <entry component="ltm_cronbach_alpha" />
+ </menu>
+ </menu>
+ <menu id="plots" label="Plots" index="5">
+ <menu id="menu_plot_irt" label="Item Response Theory" index="8">
+ <menu id="menu_plot_dichot" label="Dichotomous data" index="1">
+ <entry component="plot_rasch" />
+ <entry component="plot_ltm" />
+ <entry component="plot_tpm" />
+ </menu>
+ <menu id="menu_plot_poly" label="Polytomous data" index="2">
+ <entry component="plot_grm" />
+ <entry component="plot_rsm" />
+ <entry component="plot_pcm" />
+ </menu>
+ </menu>
+ </menu>
+ </hierarchy>
+</document>
\ No newline at end of file
Modified: trunk/rkward/rkward/plugins/under_development.pluginmap
===================================================================
--- trunk/rkward/rkward/plugins/under_development.pluginmap 2009-03-26 20:32:28 UTC (rev 2414)
+++ trunk/rkward/rkward/plugins/under_development.pluginmap 2009-03-26 20:34:28 UTC (rev 2415)
@@ -3,34 +3,6 @@
<document base_prefix="" namespace="rkward">
<components>
<component type="standard" id="simple_anova" file="simple_anova/description.xml" label="Simple Anova" />
-
- <component type="standard" id="par_est_rasch" file="analysis/irt/dichotomous/par_est_rasch.xml" label="Rasch model fit" />
- <component type="standard" id="par_est_2pl" file="analysis/irt/dichotomous/par_est_2pl.xml" label="Two parameter logistic model fit" />
- <component type="standard" id="par_est_3pl" file="analysis/irt/dichotomous/par_est_3pl.xml" label="Birnbaum three parameter model fit" />
- <component type="standard" id="par_est_lltm" file="analysis/irt/dichotomous/par_est_lltm.xml" label="Linear logistic test model fit" />
-
- <component type="standard" id="par_est_grm" file="analysis/irt/polytomous/par_est_grm.xml" label="Graded response model fit" />
- <component type="standard" id="par_est_rsm" file="analysis/irt/polytomous/par_est_rsm.xml" label="Rating scale model fit" />
- <component type="standard" id="par_est_pcm" file="analysis/irt/polytomous/par_est_pcm.xml" label="Partial credit model fit" />
- <component type="standard" id="par_est_lrsm" file="analysis/irt/polytomous/par_est_lrsm.xml" label="Linear rating scale model fit" />
- <component type="standard" id="par_est_lpcm" file="analysis/irt/polytomous/par_est_lpcm.xml" label="Linear partial credit model fit" />
-
- <component type="standard" id="ltm_cronbach_alpha" file="analysis/irt/tests/ltm_cronbach_alpha.xml" label="Cronbach's alpha" />
-
- <component type="standard" id="ltm_gof_rasch" file="analysis/irt/tests/ltm_gof_rasch.xml" label="Goodness of Fit (Rasch)" />
- <component type="standard" id="ltm_unidimensional" file="analysis/irt/tests/ltm_unidimensional.xml" label="Unidimensionality check (Rasch, LTM, 3PM)" />
- <component type="standard" id="ltm_item_fit" file="analysis/irt/tests/ltm_item_fit.xml" label="Item-fit statistics (Rasch, LTM, 3PM)" />
- <component type="standard" id="ltm_person_fit" file="analysis/irt/tests/ltm_person_fit.xml" label="Person-fit statistics (Rasch, LTM, 3PM)" />
- <component type="standard" id="eRm_waldtest" file="analysis/irt/tests/eRm_waldtest.xml" label="Wald test (RSM, PCM)" />
- <component type="standard" id="eRm_plotLR" file="plots/irt/tests/eRm_plotLR.xml" label="Andersen LR Plot (RSM, PCM)" />
-
- <component type="standard" id="plot_rasch" file="plots/irt/dichotomous/plot_rasch.xml" label="Plot fitted Rasch model" />
- <component type="standard" id="plot_ltm" file="plots/irt/dichotomous/plot_ltm.xml" label="Plot fitted two parameter logistic model" />
- <component type="standard" id="plot_tpm" file="plots/irt/dichotomous/plot_tpm.xml" label="Plot fitted Birnbaum three parameter model" />
-
- <component type="standard" id="plot_grm" file="plots/irt/polytomous/plot_grm.xml" label="Plot fitted graded response model" />
- <component type="standard" id="plot_rsm" file="plots/irt/polytomous/plot_rsm.xml" label="Plot fitted rating scale model" />
- <component type="standard" id="plot_pcm" file="plots/irt/polytomous/plot_pcm.xml" label="Plot fitted partial credit model" />
</components>
<hierarchy>
@@ -42,44 +14,8 @@
</menu>
<menu id="analysis" label="Analysis" index="4">
<entry component="simple_anova" index="9"/>
- <menu id="menu_irt" label="Item Response Theory" index="4">
- <menu id="menu_dichot" label="Dichotomous data" index="1">
- <entry component="par_est_rasch" />
- <entry component="par_est_2pl" />
- <entry component="par_est_3pl" />
- <entry component="par_est_lltm" />
- </menu>
- <menu id="menu_poly" label="Polytomous data" index="2">
- <entry component="par_est_grm" />
- <entry component="par_est_rsm" />
- <entry component="par_est_pcm" />
- <entry component="par_est_lrsm" />
- <entry component="par_est_lpcm" />
- </menu>
- <menu id="menu_tests" label="Tests" index="3">
- <entry component="ltm_gof_rasch" />
- <entry component="ltm_unidimensional" />
- <entry component="ltm_item_fit" />
- <entry component="ltm_person_fit" />
- <entry component="eRm_waldtest" />
- <entry component="eRm_plotLR" />
- </menu>
- <entry component="ltm_cronbach_alpha" />
- </menu>
</menu>
<menu id="plots" label="Plots" index="5">
- <menu id="menu_plot_irt" label="Item Response Theory" index="8">
- <menu id="menu_plot_dichot" label="Dichotomous data" index="1">
- <entry component="plot_rasch" />
- <entry component="plot_ltm" />
- <entry component="plot_tpm" />
- </menu>
- <menu id="menu_plot_poly" label="Polytomous data" index="2">
- <entry component="plot_grm" />
- <entry component="plot_rsm" />
- <entry component="plot_pcm" />
- </menu>
- </menu>
</menu>
<menu id="distributions" label="Distributions" index="7">
</menu>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the rkward-tracker
mailing list