Description Usage Arguments Details Value Author(s) See Also Examples
Compute a cutoff value given the scores of a person-fit statistic.
1 2 3 4 5 6 |
x |
Object of class "PerFit". |
ModelFit |
Method required to compute model-fitting item score patterns. The options available are |
Nreps |
Number of model-fitting item score patterns generated. Default is 1000. |
IP |
Matrix with previously estimated item parameters. Default is |
IRT.PModel |
Parametric IRT model (required if |
Ability |
Matrix with previously estimated item parameters. Default is |
Ability.PModel |
Method to use in order to estimate the latent ability parameters (required if |
mu |
Mean of the apriori distribution. Only used when |
sigma |
Standard deviation of the apriori distribution. Only used when |
Blvl |
Significance level for bootstrap distribution (value between 0 and 1). Default is 0.05. |
Breps |
Number of bootstrap resamples. Default is 1000. |
CIlvl |
Level of bootstrap percentile confidence interval for the cutoff statistic. |
UDlvl |
User-defined cutoff level. |
This function computes a reference value (referred to as a 'cutoff') associated to the values of a person-fit statistic computed from a sample. The idea is to create a decision rule: Individual person-fit values at or more extreme than the cutoff result in flagging the corresponding respondents as (potentially) displaying aberrant response behavior.
Depending on the person-fit statistic, an "extreme" score might be a very small (e.g., for Ht
) or a very large (e.g., for G
) value. The cutoff
function routinely reports of which type the person-fit statistic being used is (Tail="lower"
or Tail="upper"
, respectively).
The procedure consists of generating Nreps
model-fitting item response vectors based on parametric model parameters (when ModelFit="Parametric"
) or on proportion of respondents per answer category (when ModelFit="NonParametric"
). This allows computing a sample of Nreps
values of the person fit statistic corresponding to model-fitting item response patterns. A bootstrap procedure is then used to approximate the sampling distribution of the quantile of level Blvl
(resp., 1-Blvl
) for "lower" (resp. "upper") types of person fit statistics, based on Breps
resamples. The cutoff (and its standard error) is given by the median (standard deviation) of this bootstrap distribution. Alternatively, the cutoff can be manually entered by the user (e.g., when it is available from prior data calibration) by means of UDlvl
.
An object of class "PerFit.cutoff", which is a list with 5 elements:
Cutoff |
Numeric. Value of the computed cutoff. |
Cutoff.SE |
Numeric. Bootstrap estimated standard error of the cutoff value. |
Prop.flagged |
Numeric. Proportion of respondents flagged (that is, with person-fit scores at or more extreme than the cutoff). |
Tail |
String with values "lower" or "upper". It indicates the type of person-fit statistic. |
Cutoff.CI |
Numeric. Percentile bootstrap (CIlvl)% confidence interval for the cutoff value. |
Jorge N. Tendeiro tendeiro@hiroshima-u.ac.jp
flagged.resp
, plot.PerFit
, PRFplot
1 2 3 4 5 6 7 8 | # Load the inadequacy scale data (dichotomous item scores):
data(InadequacyData)
# As an example, compute the Ht person-fit scores:
Ht.out <- Ht(InadequacyData)
# Compute the cutoff value at 1% level:
cutoff(Ht.out, Blvl=.01)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.