Description Usage Arguments Value Author(s) References See Also Examples
The function presents standard errors for the mean, standard deviation, standard scores, stanine boundaries, and percentiles based on a vector of test scores (Oosterhuis, Van der Ark, and Sijtsma, in press).
1 | check.norms(y, nice.output = TRUE)
|
y |
numerical vector. Typically a numerical vector of length N, representing the test scores of N respondents. Missing values are not allowed |
nice.output |
Logical: If |
list of five components:
(1) mean
: Sample mean and its standard error (noquote
).
(2) sd
: Sample standard deviation and its standard error (noquote
).
(3) z
: For each unique testscore, the test score, its frequency, the corresponding estimated standard score and its standard error (noquote
).
(4) sta9
: The estimates of the 8 boundaries of the stanines and their standard error (noquote
).
(5) z
: For each unique testscore, the test score, its frequency, the corresponding estimated percentile rank and its standard error (noquote
).
L. A. van der Ark L.A.vanderArk@uva.nl and H. E. M. Oosterhuis
Oosterhuis, H. E. M., Van der Ark, L. A., and Sijtsma, K. (in press). Standard errors and confidence intervals of norm statistics for educational and psychological tests. Psychometrika. doi:10.1007/s11336-016-9535-8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | data(DS14)
# Handle missing data and recode negatively worded items
X <- DS14[, 3 : 16]
X <- twoway(X)
X <- recode(X, c(1, 3))
# Negative affectivity
Na <- X[, c(1, 3, 6, 8, 10, 11, 14)]
# Social inhibition
Si <- X[, c(2, 4, 5, 7, 9, 12, 13)]
# Norms
check.norms(rowSums(Na))
check.norms(rowSums(Si))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.