Chapter 1 Item Selection

The design and analysis of a survey depends on its purpose. Exploratory surveys investigate topics with no particular expectation. They are usually qualitative and often ask open-ended questions which are analyzed for content (word/phrase frequency counts) and themes. Descriptive surveys measure the association between the survey topic(s) and the respondent attributes. They typically ask Likert scale questions. Explanatory surveys explain and quantify hypothesized relationships with inferential statistics.

1.1 Reliability and Validity

A high quality survey will be both reliable (consistent) and valid (accurate).2 A reliable survey is reproducible under similar conditions. It produces consistent results across time, samples, and sub-samples within the survey itself. Reliable surveys are not necessarily accurate though. A valid survey accurately measures its latent variable. Its results are compatible with established theory and with other measures of the concept. Valid surveys are usually reliable too.

Reliability can entail one or more of the following:

  • Inter-rater reliability (aka Equivalence). Each survey item is unambiguous, so subject matter experts should respond identically. This applies to opinion surveys of factual concepts, not personal preference surveys. E.g., two psychologists completing a survey assessing a patient’s mental health should respond identically. Use the Cohen’s Kappa test of inter-rater reliability to test equivalence (see Section 1.2 on item generation).
  • Internal consistency. Survey items measuring the same latent variable are highly correlated. Use the Cronbach alpha test and split-half test to assess internal consistency (see Section 4.6 on item reduction).
  • Stability (aka Test-retest). Repeated measurements yield the same results. You use the test-retest construct to assess stability in the Replication phase.

There are three assessments of validity:

  • Content validity. The survey items cover all aspects of the latent variable. Use Lawshe’s CVR to assess content validity (see Section 1.2 on item generation).
  • Construct validity. The survey items are properly grounded on a theory of the latent variable. Use convergent analysis and discriminant analysis to assess construct validity in the Convergent/Discriminant Validity phase.
  • Criterion validity. The survey item results correspond to other valid measures of the same latent variable. Use concurrent analysis and predictive analysis to assess criterion validity in the Replication phase.

Survey considerations

  • Question order, selection order
  • respondent burden and fatigue

Quality of Measurement: Reliability and Validity (internal and external)

Pretest and pilot test

Probability Sampling: - simple random, systematic random, stratified random, cluster, and multistate cluster. - power analysis

Reporting - Descriptive statistics - Write-up

Continuous latent variables (e.g., level of satisfaction) can be measured with factor analysis (exploratory and confirmatory) or item response theory (IRT) models. Categorical or discrete variables (e.g., market segment) can be modeled with latent class analysis (LCA) or latent mixture modeling. You can even combine models, e.g., satisfaction within market segment.

In practice, you specify the model, evaluate the fit, then revise the model or add/drop items from the survey.

A full survey project usually consists of six phases.3

  1. Item Generation (Section 1.2). Start by generating a list of candidate survey items. With help from SMEs, you evaluate the equivalence (interrater reliability) and content validity of the candidate survey items and pare down the list into the final survey.

  2. Survey Administration (Section 4.5). Administer the survey to respondents and perform an exploratory data analysis. Summarize the Likert items with plots and look for correlations among the variables.

  3. Item Reduction (Section 4.6). Explore the dimensions of the latent variable in the survey data with parallel analysis and exploratory factor analysis. Assess the internal consistency of the items with Cronbach’s alpha and split-half tests, and remove items that do not add value and/or amend your theory of the number of dimensions.

  4. Confirmatory Factor Analysis (Section 4.7). Perform a formal hypothesis test of the theory that emerged from the exploratory factor analysis.

  5. Convergent/Discriminant Validity (Section 4.8). Test for convergent and discriminant construct validity.

  6. Replication (Section 4.9). Establish test-retest reliability and criterion validity.

1.2 Item Generation

Define your latent variable(s), that is, the unquantifiable variables you intend to infer from variables you can quntify. E.g., “Importance of 401(k) matching”

After you generate a list of candidate survey items, enlist SMEs to assess their inter-rater reliability with Cohen’s Kappa and content validity with Lawshe’s CVR.

1.2.1 Cohen’s Kappa

An item has inter-rater reliability if it produces consistent results across raters. One way to test this is by having SMEs take the survey. Their answers should be close to each other. Conduct an inter-rater reliability test by measuring the statistical significance of SME response agreement using the Kohen’s kappa test statistic.

Suppose your survey measures brand loyalty and two SMEs answer 13 survey items like this. The SMEs agreed on 6 of the 13 items (46%).

sme %>% mutate(agreement = RATER_A == RATER_B)
##    RATER_A RATER_B agreement
## 1        1       1      TRUE
## 2        2       2      TRUE
## 3        3       2     FALSE
## 4        2       3     FALSE
## 5        1       3     FALSE
## 6        1       1      TRUE
## 7        1       1      TRUE
## 8        2       1     FALSE
## 9        3       2     FALSE
## 10       3       3      TRUE
## 11       2       3     FALSE
## 12       1       3     FALSE
## 13       1       1      TRUE

You could measure SME agreement with a simple correlation matrix (cor(sme)) or by measuring the percentage of items they rate identically (irr::agree(sme)), but these measures do not test for statistical validity.

cor(sme)
##           RATER_A   RATER_B
## RATER_A 1.0000000 0.3291403
## RATER_B 0.3291403 1.0000000
irr::agree(sme)
##  Percentage agreement (Tolerance=0)
## 
##  Subjects = 13 
##    Raters = 2 
##   %-agree = 46.2

Instead, calculate the Kohen’s kappa test statistic, \(\kappa\), to assess statistical validity. Cohen’s kappa compares the observed agreement (accuracy) to the probability of chance agreement. \(\kappa\) >= 0.8 is very strong agreement, \(\kappa\) >= 0.6 substantial, \(\kappa\) >= 0.4 moderate, and \(\kappa\) < 0.4 is poor agreement. In this example, \(\kappa\) is only 0.32 (poor agreement).

psych::cohen.kappa(sme)
## Call: cohen.kappa1(x = x, w = w, n.obs = n.obs, alpha = alpha, levels = levels)
## 
## Cohen Kappa and Weighted Kappa correlation coefficients and confidence boundaries 
##                   lower estimate upper
## unweighted kappa -0.179     0.19  0.55
## weighted kappa   -0.099     0.32  0.73
## 
##  Number of subjects = 13
psych::cohen.kappa(sme2)
## Call: cohen.kappa1(x = x, w = w, n.obs = n.obs, alpha = alpha, levels = levels)
## 
## Cohen Kappa and Weighted Kappa correlation coefficients and confidence boundaries 
##                  lower estimate upper
## unweighted kappa -0.22     0.17  0.56
## weighted kappa    0.33     0.56  0.80
## 
##  Number of subjects = 13

Use the weighted kappa for ordinal measures like Likert items (see Wikipedia).

1.2.2 Lawshe’s CVR

An item has content validity if SMEs agree on its relevance to the latent variable. Test content validity with Lawshe’s content validity ratio (CVR),

\[CVR = \frac{E - N/2}{N/2}\] where \(N\) is the number of SMEs and \(E\) is the number who rate the item as essential. CVR can range from -1 to 1. E.g., suppose three SMEs (A, B, and C) assess the relevance of 5 survey items as “Not Necessary”, “Useful”, or “Essential”:

##   item            A            B            C
## 1    1    Essential       Useful Not necesary
## 2    2       Useful Not necesary       Useful
## 3    3 Not necesary Not necesary    Essential
## 4    4    Essential       Useful    Essential
## 5    5    Essential    Essential    Essential

Use the psychometric::CVratio() function to calculate CVR. The threshold CVR to keep or drop an item depends on the number of raters. CVR should be >= 0.99 for 5 experts; >= 0.49 for 15, and >= 0.29 for 40.

sme2 %>% 
  pivot_longer(-item, names_to = "expert", values_to = "rating") %>%
  group_by(item) %>% 
  summarize(.groups = "drop",
            n_sme = length(unique(expert)),
            n_ess = sum(rating == "Essential"),
            CVR = psychometric::CVratio(NTOTAL = n_sme, NESSENTIAL = n_ess))
## # A tibble: 5 × 4
##    item n_sme n_ess    CVR
##   <int> <int> <int>  <dbl>
## 1     1     3     1 -0.333
## 2     2     3     0 -1    
## 3     3     3     1 -0.333
## 4     4     3     2  0.333
## 5     5     3     3  1

In this example, items vary widely in content validity from unanimous consensus for to unanimous consensus against.

References

Middleton, Fiona. 2022. “Reliability Vs. Validity in Research | Difference, Types and Examples.” https://www.scribbr.com/methodology/reliability-vs-validity/.
Mount, George. n.d. “Survey and Measurement Development in r.” https://app.datacamp.com/learn/courses/survey-and-measurement-development-in-r.

  1. This section is aided by Fiona Middleton’s “Reliability vs. Validity in Research | Difference, Types and Examples” (Middleton 2022).↩︎

  2. This section is primarily from George Mount’s Data Camp course (Mount, n.d.).↩︎