qdc {qmethod}R Documentation

Q methodology: distinguishing and consensus statements

Description

Indicates the distinguishing and consensus statements. It does so by comparing the z-scores between each pair factors.

Usage

qdc(dataset, nfactors, zsc, sed)

Arguments

dataset

a matrix or a dataframe containing original data, with statements as rows, Q sorts as columns, and grid column values in each cell.

nfactors

number of factors extracted.

zsc

a matrix or a dataframe with the factor z-scores for statements resulting from qzscores.

sed

a matrix or a dataframe with the standard error of differences resulting from qfcharact.

Details

Finds the distinguishing and consensus statements, based on the absolute differences between factor z-scores being larger than the standard error of differences (SED, calculated in qfcharact) for a given pair of factors.

Returns a single data frame with the differences in z-scores between each pair of factors and the variable dist.and.cons, indicating whether each statement is distinguishing or consensus and for which factor(s) it is distinguishing. These are the possible categories in the dist.and.cons variable:

Significant differences at p-values:

Note

This is a function used within qmethod. Rarely to be used independently.

Author(s)

Aiora Zabala

References

Brown, S. R., 1980 Political subjectivity: Applications of Q methodology in political science, New Haven, CT: Yale University Press.

See further references on the methodology in qmethod-package.

Examples

data(lipset)
results <- qmethod(lipset[[1]], nfactors = 3, rotation = "varimax")
sed <- as.data.frame(results[[7]][[3]])
zsc <- results[[5]]
qdc(lipset[[1]], nfactors = 3, zsc = zsc, sed = sed)

[Package qmethod version 1.8.4 Index]