EDT | R Documentation |
This function defines a EDT module for incorporation into a psychTestR timeline. Use this function if you want to include the EDT in a battery of other tests, or if you want to add custom psychTestR pages to your test timeline.
EDT(
num_items = 18L,
with_welcome = TRUE,
take_training = FALSE,
with_finish = TRUE,
label = "EDT",
feedback = EDT_feedback_with_score(),
dict = EDT::EDT_dict,
adaptive = TRUE,
autoplay = TRUE,
next_item.criterion = "bOpt",
next_item.estimator = "BM",
next_item.prior_dist = "norm",
next_item.prior_par = c(0, 1),
final_ability.estimator = "WL",
constrain_answers = FALSE
)
num_items |
(Integer scalar) Number of items in the test. |
with_welcome |
(Scalar boolean) Indicates, if a welcome page shall be displayed. Defaults to TRUE |
take_training |
(Logical scalar) Whether to include the training phase. Defaults to FALSE |
with_finish |
(Scalar boolean) Indicates, if a finish (not final!) page shall be displayed. Defaults to TRUE |
label |
(Character scalar) Label to give the EDT results in the output file. |
feedback |
(Function) Defines the feedback to give the participant at the end of the test. |
dict |
The psychTestR dictionary used for internationalisation. |
adaptive |
(Scalar boolean) Indicates whether you want to use the adaptive EDT2 (TRUE) or the non-adaptive EDT (FASLE). Default is adaptive = TRUE. |
autoplay |
(Scalar boolean) Indicates whether you want to have autoplay for item pages (instruction pages always not-autoplay) |
next_item.criterion |
(Character scalar)
Criterion for selecting successive items in the adaptive test.
See the |
next_item.estimator |
(Character scalar)
Ability estimation method used for selecting successive items in the adaptive test.
See the |
next_item.prior_dist |
(Character scalar)
The type of prior distribution to use when calculating ability estimates
for item selection.
Ignored if |
next_item.prior_par |
(Numeric vector, length 2)
Parameters for the prior distribution;
see the |
final_ability.estimator |
Estimation method used for the final ability estimate.
See the |
constrain_answers |
(Logical scalar)
If |
For demoing the EDT, consider using EDT_demo()
.
For a standalone implementation of the EDT,
consider using EDT_standalone()
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.