- dataset
a matrix or dataframe containing original data, with statements as rows, Q sorts as columns, and Q board column values in each cell.
- nfactors
number of factors to extract using PCA.
- load
a matrix of factor loadings to be used as target. If "auto", the target matrix is generated using the rotation indicated ("varimax" by default).
- nsteps
number of steps (repetitions) for the bootstraping.
- rotation
rotation method, set to "varimax" by default. Other possible rotations from psych principal
function "none", "varimax", "quatimax", "promax", "oblimin", "simplimax", and "cluster" are possible.
- indet
method to solve the double indeterminacy issue in PCA bootstrapping. "procrustes"
for procrustes rotation, "qindtest"
for simple solution valid for up to 3 factors extracted, "both"
for a qindtest and a procrustes rotation, or "none"
for no rotation. The latter is not recommended for it introduces inflated variability. If "none"
is selected, each replication is rotated using varimax.
- fsi
logical; Shall the Factor Stability index be calculated? (experimental index).
- forced
logical; Is the ranking of the items forced to match the distributions? Set to TRUE
if all respondents ranked the items strictly following the distribution scores, in which case the values of the distribution are calculated automatically. Set to FALSE
if respondents had the possibility to rank the items without following the distribution, and the values of the distribution have to be provided as an array in the argument distribution
.
- distribution
logical; when forced = FALSE
, the distribution has to be provided as a vector of numbers, such as c(-2, -1, -1, 0, 1, 1, 2, 2)
.
- cor.method
character string indicating which correlation coefficient is to be computed, to be passed on to the function cor
: "pearson"
(default), "kendall"
, or "spearman"
.
- ...
Other arguments passed on to qmethod
.