siren Vignette

David Navarro-Gonzalez, Pere Joan Ferrando, Fabia Morales-Vives and Ana Hernandez-Dorado

2024-11-07

This vignette ilustrates siren functions using the provided example dataset.

Overview

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 unrestricted ACQ factor is estimated and its effects are partialled-out from the inter-item correlation matrix. 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 for both ACQ and content to be obtained for each respondent.

Usage

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:

?acquihybrid

The minimum required arguments are: the raw sample item scores (x), the content factors to be retained (content_factors) and the target pattern matrix (target), which provides the location of the items in the factors and 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.

Example

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 the self-reliance subscale and six items of the 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 respondents’ scores are:

Respondent I1 I2 I3 I4 I5 I6 I7 I8 I9 I10
Respondent 1 1 4 3 4 3 5 3 2 5 5
Respondent 2 2 1 1 5 1 5 4 4 5 5
Respondent 3 4 2 3 4 1 5 3 4 5 5
Respondent 4 1 1 2 5 1 4 5 2 5 4
Respondent 5 1 1 2 3 3 5 4 3 5 4
Respondent 6 2 3 4 4 2 5 4 5 5 5
Respondent 7 1 1 3 5 1 5 3 5 5 5
Respondent 8 1 3 4 4 1 4 5 3 5 4
Respondent 9 3 2 1 4 1 4 5 2 4 5
Respondent 10 4 1 1 3 3 5 5 5 4 3

As mentioned, two content factors will be specified int this case (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 factor, 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

The example can now be computed using the following code:

acquihybrid(psymas, content_factors = 2, target = psymas_target, corr = "Polychoric")

Note that the corr = “Polychoric” argument specifies that the item scores are treated as ordered-categorical and that the structural non-linear solution is fitted to the inter-item polychoric correlation matrix.

The factor loadings estimates 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 for the structural solution are: GFI = 0.999, SRMR = 0.041, RMSEA = 0.045, and CFI = 0.964.

Finally, the individual factor score estimates are computed. Here are those of the first 10 respondents:

Respondent F1 F2 ACQ
Respondent 1 0.16 0.402 0.514
Respondent 2 -1.011 -0.972 0.359
Respondent 3 -0.11 0.086 0.621
Respondent 4 -0.689 -0.849 -0.112
Respondent 5 -0.823 0.483 0.03
Respondent 6 0.138 0.497 1.143
Respondent 7 -0.927 -0.182 0.918
Respondent 8 0.192 0.022 0.33
Respondent 9 0.153 -0.988 -0.091
Respondent 10 -0.152 0.558 -0.359

References

Ferrando, P. J., & Seva, U. L. (2000). Unrestricted versus restricted factor analysis of multidimensional test items: Some aspects of the problem and some suggestions. Psicológica, 21(2), 301-323.

Morales-Vives, F., Camps, E., & Dueñas, J.M. (2020). Predicting academic achievement in adolescents: The role of maturity, intelligence and personality. Psicothema, 32(1), 84-91. https://doi.org/10.7334/psicothema2019.262

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

Morales-Vives, F., Dueñas, J. M. (2018). Predicting suicidal ideation in adolescent boys and girls: The role of psychological maturity, personality traits, depression and life satisfaction. Spanish Journal of Psychology, 21(e10), 1-12. https://doi.org/10.1017/sjp.2018.12

Morales-Vives, F., Ferrando, P.J., Dueñas, J.-M., Martín-Arbós, S., Castarlenas, E. (2024). Are Older Teens More Frustrated than Younger Teens by the COVID-19 Restrictions? The Role of Psychological Maturity, Personality Traits, Depression and Life Satisfaction. Current Psychology, 43, 12208-12220. https://doi.org/10.1007/s12144-023-04317-6