-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/AnthonyRaborn/caMST
- Loading branch information
Showing
6 changed files
with
90 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: caMST | ||
Type: Package | ||
Title: Mixed Computerized Adaptive Multistage Testing | ||
Version: 0.1.5 | ||
Date: 2021-08-17 | ||
Version: 0.1.6 | ||
Date: 2022-06-24 | ||
Authors@R: person("Anthony", "Raborn", email = "[email protected]", role = c("aut","cre")) | ||
Description: Provides functions to more easily analyze computerized adaptive tests. Currently, functions for computerized | ||
adaptive tests (CAT), computer adaptive multistage tests (CMT), and mixed computer adaptive multistage tests (McaMST) | ||
|
@@ -21,4 +21,4 @@ Imports: catR, | |
Suggests: testthat, | ||
knitr, | ||
rmarkdown | ||
RoxygenNote: 7.1.1 | ||
RoxygenNote: 7.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,7 +86,7 @@ data.frame("True Theta" = example_thetas, | |
1.96*[email protected]) | ||
``` | ||
|
||
The theta estimates under CMT using the default module selection are close except for person 4, whose estimate falls outside of the 95% confidence interval. Using the "MLWMI" module selection does not work very well at all for this data, though. | ||
The theta estimates under CMT using the default module selection are close as all the estimates fall within the 95% confidence interval. Using the "MLWMI" module selection produces different, but similarly accurate estimates. | ||
|
||
### Mixed Computerized Adaptive Multistage Testing (Mca-MST) | ||
|
||
|
@@ -205,9 +205,9 @@ catResults | |
data.frame("True Theta" = example_thetas, | ||
"Estimated Theta" = [email protected], | ||
"CI95 Lower Bound" = [email protected] - | ||
1.96*results@final.theta.SEM, | ||
1.96*catResults@final.theta.SEM, | ||
"CI95 Upper Bound" = [email protected] + | ||
1.96*results@final.theta.SEM) | ||
1.96*catResults@final.theta.SEM) | ||
``` | ||
|
||
|
Oops, something went wrong.