This vignette ilustrates siren functions using the provided example dataset.
siren performs an hybrid multi-stage factor analytic procedure for controlling the effects of Acquiescence (ACQ) in multidimensional questionnaires for which a restricted factorial solution (Ferrando & Lorenzo-Seva, 2000) can be specified. In the first stage, an ACQ factor is estimated and its effects are partialled-out from the inter-item correlations. In the second, a specified CFA solution is fitted to the cleaned matrix. This solution can be specified in two ways: (a) using the cleaned correlation matrix as input, or (b) specifying a full solution which has fixed loadings on the ACQ factor. The use of the program allows (a) the structural properties of the questionnaire to be assessed and (b) unbiased factor score estimates to be obtained for each respondent.
acquihybrid(x, content_factors, target, corr = "Pearson", raw_data=TRUE,
method = "fixed", display = TRUE)
The complete description of the arguments can be found in the function documentation:
The minimum required arguments are: the raw sample scores (x), the content factors to be retained (content_factors) and the target matrix (target), which provides the direction of each item in their corresponding factor.
In the next section we will provide an empirical example, describing all the used input arguments.
To illustrate how siren works, we have used an existing dataset of 1309 participants (55.8% females) between 14 and 19 years old (M = 16.4, S.D. = 1.1) from three previous studies (Morales-Vives & Dueñas, 2018; Morales-Vives et al., 2020; Morales-Vives et al., in press.
All participants answered the Psychological Maturity Assessment Scale questionnaire (PSYMAS; Morales-Vives et al., 2013), which assesses the psychological maturity of adolescents, understood as the ability to take responsibility for one’s own obligations, taking into account one’s own characteristics and needs, without showing excessive dependence on others. It consists of 27 items with a five-point response format (1 = Completely disagree, 5 = Completely agree) and it assesses the following factors: work orientation, self-reliance, and identity.
In the current analysis, we have only used ten items from two of the subscales of this questionnaire (four items of self-reliance subscale and six items of identity subscale) so that within each subscale half of the items were in one direction (lack of maturity) and the other half in the opposite direction (high maturity). Self-reliance refers to willingness to take the initiative without allowing others to exercise excessive control, and Identity refers to knowledge about own’s characteristics and needs.
The complete dataset is available through siren::psymas
.
For illustrative purposes, the first 10 responders’ scores are:
Responder | I1 | I2 | I3 | I4 | I5 | I6 | I7 | I8 | I9 | I10 |
---|---|---|---|---|---|---|---|---|---|---|
responder1 | 1 | 4 | 3 | 4 | 3 | 5 | 3 | 2 | 5 | 5 |
responder2 | 2 | 1 | 1 | 5 | 1 | 5 | 4 | 4 | 5 | 5 |
responder3 | 4 | 2 | 3 | 4 | 1 | 5 | 3 | 4 | 5 | 5 |
responder4 | 1 | 1 | 2 | 5 | 1 | 4 | 5 | 2 | 5 | 4 |
responder5 | 1 | 1 | 2 | 3 | 3 | 5 | 4 | 3 | 5 | 4 |
responder6 | 2 | 3 | 4 | 4 | 2 | 5 | 4 | 5 | 5 | 5 |
responder7 | 1 | 1 | 3 | 5 | 1 | 5 | 3 | 5 | 5 | 5 |
responder8 | 1 | 3 | 4 | 4 | 1 | 4 | 5 | 3 | 5 | 4 |
responder9 | 3 | 2 | 1 | 4 | 1 | 4 | 5 | 2 | 4 | 5 |
responder10 | 4 | 1 | 1 | 3 | 3 | 5 | 5 | 5 | 4 | 3 |
As mentioned, the content factors
to be retained in this
case will be 2 (Self-reliance and identity).
Finally, the target_matrix
of the 10 items is a matrix
composed by 0 (the item does not measure this factor), -9 or 9, when the
item measures the item, in reverse or direct way.
psymas_target=cbind(c(-9,-9,0,0,0,9,0,0,9,0),c(0,0,-9,9,-9,0,9,-9,0,9))
Which reads as:
Item | F1 | F2 |
---|---|---|
I1 | -9 | 0 |
I2 | -9 | 0 |
I3 | 0 | -9 |
I4 | 0 | 9 |
I5 | 0 | -9 |
I6 | 9 | 0 |
I7 | 0 | 9 |
I8 | 0 | -9 |
I9 | 9 | 0 |
I10 | 0 | 9 |
Finally, the example can be computed using the following code:
acquihybrid(psymas, content_factors = 2, target = psymas_target, corr = "Polychoric")
The factor loadings scores are:
Item | F1 | F2 | ACQ |
---|---|---|---|
I1 | 0.293 | 0.000 | 0.001 |
I2 | 0.530 | 0.000 | 0.001 |
I6 | -0.558 | 0.000 | 0.231 |
I9 | -0.398 | 0.000 | 0.206 |
I3 | 0.000 | 0.541 | 0.380 |
I4 | 0.000 | -0.569 | 0.079 |
I5 | 0.000 | 0.655 | 0.070 |
I7 | 0.000 | -0.533 | 0.156 |
I8 | 0.000 | 0.433 | 0.338 |
I10 | 0.000 | -0.472 | 0.566 |
The fit indices scores are: GFI = 0.999, SRMR = 0.041, RMSEA = 0.045, and CFI = 0.964.
Finally, the individual factor scores are computed. Here are the factor scores of the first 10 responders:
Responder | F1 | F2 | ACQ |
---|---|---|---|
responder1 | 0.16 | 0.402 | 0.514 |
responder2 | -1.011 | -0.972 | 0.359 |
responder3 | -0.11 | 0.086 | 0.621 |
responder4 | -0.689 | -0.849 | -0.112 |
responder5 | -0.823 | 0.483 | 0.03 |
responder6 | 0.138 | 0.497 | 1.143 |
responder7 | -0.927 | -0.182 | 0.918 |
responder8 | 0.192 | 0.022 | 0.33 |
responder9 | 0.153 | -0.988 | -0.091 |
responder10 | -0.152 | 0.558 | -0.359 |
Ferrando, P. J., & Lorenzo-Seva, U. (2000). Unrestricted versus restricted factor analysis of multidimensional test items: Some aspects of the problem and some suggestions. Psicológica, 21(2), 301-323.
Ferrando, P. J., & Lorenzo-Seva, U. (2010). Unrestricted item factor analysis and some relations with item response theory. Technical report, Department of Psychology, Universitat Rovira i Virgili, Tarragona.http://psico.fcep.urv.es/utilitats/factor.
Ferrando, P. J., Lorenzo-Seva, U., & Chico, E. (2003). Unrestricted factor analytic procedures for assessing acquiescent responding in balanced, theoretically unidimensional personality scales. Multivariate Behavioral Research, 3(38):353–374, doi:10.1207/S15327906MBR3803_04
Morales-Vives, F., Camps, E., & Lorenzo-Seva, U. (2012). Manual del Cuestionario de Madurez Psicológica PSYMAS. TEA Ediciones, S.A.
Morales-Vives, F., Camps, E., & Lorenzo-Seva, U. (2013). Development and validation of the psychological maturity assessment scale (PSYMAS). European Journal of Psychological Assessment. doi:10.1027/1015-5759/a000115