Alterlab mixed methods
Skill AlterLab-IEU/AlterLab-Academic-Skills/skills/research-tools/alterlab-mixed-methods
239 evaluated academic Claude/agent skills across 17 research domains (bioinformatics, data science, clinical, social-science methods, Turkish academia & more). Executable eval per skill, deterministic citation verifier, research→write→review→publish pipeline, and a skill-finder front door. Claude Code, Cursor, Codex, Gemini CLI & Copilot.
npx -y skills add AlterLab-IEU/AlterLab-Academic-Skills --skill alterlab-mixed-methodsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Mixed methods research design and integration strategies for combining qualitative and quantitative approaches. Use when planning convergent, explanatory sequential, exploratory sequential, embedded, transformative, or multiphase designs; when integrating diverse data sources through merging, connecting, or embedding; when constructing joint displays or meta-inferences; or when evaluating quality criteria specific to mixed methods research. Covers Creswell & Plano Clark frameworks, notation systems, and software tools for integration. For single-strand qualitative coding (thematic analysis, grounded theory, saturation, inter-coder reliability) use alterlab-qualitative-methods; for questionnaire/Likert/instrument-validation mechanics use alterlab-survey-design. Part of the AlterLab Academic Skills suite.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
22.8 KB, ~4.5k tokens by cl100k_base, as published. Nobody here has run it
Mixed Methods Research Design
Overview
Mixed methods research is a methodology that combines quantitative and qualitative research approaches within a single study or program of inquiry. It goes beyond simply collecting both types of data — it requires intentional integration at one or more stages of the research process (design, methods, interpretation, reporting) to generate insights that neither approach could produce alone. This skill provides comprehensive guidance on designing, executing, and reporting mixed methods studies according to established frameworks, with particular emphasis on the Creswell & Plano Clark typology and the integration strategies that distinguish rigorous mixed methods from mere parallel data collection.
Mixed methods emerged as a recognized "third methodological movement" in the early 2000s, though researchers had been combining approaches for decades. Its legitimacy rests on the philosophical position of pragmatism — selecting methods based on what works best to answer the research questions rather than adhering to a single paradigm. Today, mixed methods is a requirement or strong recommendation in many funding agencies (NIH, NSF, ESRC) and is increasingly expected in fields such as health sciences, education, evaluation research, and social policy.
When to Use This Skill
Use this skill when:
- Designing a study that requires both statistical generalizability and contextual depth
- Planning how to combine qualitative and quantitative strands in a coherent design
- Choosing between convergent, explanatory sequential, exploratory sequential, embedded, transformative, or multiphase designs
- Developing integration strategies (merging, connecting, embedding) for multi-strand studies
- Constructing joint displays to visualize integrated findings
- Formulating meta-inferences that go beyond what either strand alone could produce
- Writing the methods section of a mixed methods manuscript or proposal
- Evaluating the quality, legitimacy, or rigor of a mixed methods study
- Using the Creswell & Plano Clark notation system to diagram a design
- Selecting software tools for managing mixed methods data integration
- Preparing a mixed methods study for IRB review with multiple data collection phases
- Responding to reviewer critiques about the rationale for mixing methods
Core Capabilities
1. Mixed Methods Design Typology
The following designs represent the major archetypes. In practice, many studies adapt or combine these.
Convergent Parallel Design (QUAL + QUAN)
Both strands are collected and analyzed concurrently, then merged for interpretation.
Notation: QUAL + QUAN → Merge → Interpretation
Timeline:
Phase 1 (concurrent):
├── Quantitative data collection & analysis
└── Qualitative data collection & analysis
Phase 2:
└── Merge results → Compare, contrast, synthesize
Purpose: Triangulation, complementarity, or obtaining a more complete understanding
Example research question:
"How do survey measures of teacher self-efficacy converge with or diverge
from teachers' narrative accounts of their classroom confidence?"
Key decisions in convergent design:
- Sample: Same participants (identical samples), overlapping samples, or parallel samples?
- Timing: Truly concurrent or within the same broad phase?
- Merging point: At the results level (side-by-side comparison) or at the data transformation level (qualitizing or quantitizing)?
- Handling discrepancy: What if findings conflict? Plan for this a priori.
A worked convergent-design joint display (survey statistics vs. interview themes with per-row convergence assessment and meta-inference) is in references/joint_display_templates.md.
Explanatory Sequential Design (QUAN → qual)
Quantitative data is collected and analyzed first; qualitative data is then collected to explain or elaborate on quantitative results.
Notation: QUAN → qual → Interpretation
Timeline:
Phase 1: Quantitative data collection & analysis
Phase 2: Identify results needing explanation
(outliers, unexpected findings, significant predictors)
Phase 3: Qualitative data collection targeting those results
Phase 4: Qualitative analysis
Phase 5: Integration and interpretation
Connection point: Quantitative results inform qualitative sampling and protocols
Example research question:
"What factors explain why some departments showed significant improvement
in research output while others with similar resources did not?"
Participant selection strategies for the qualitative phase:
# Conceptual selection logic for explanatory sequential design
def select_qualitative_participants(quant_results):
"""
Common strategies for selecting participants
for the qualitative follow-up phase.
"""
strategies = {
"extreme_cases": "Select participants at the extremes of the distribution",
"outlier_cases": "Select participants whose outcomes deviate from predictions",
"typical_cases": "Select participants near the mean for each subgroup",
"maximal_variation": "Select across the full range of the key variable",
"confirming_disconfirming": "Select cases that support and challenge quant findings",
"subgroup_follow_up": "Select from each statistically identified subgroup"
}
# Example: Follow up on regression residuals
high_residual = quant_results[quant_results['residual'].abs() > 2.0]
typical = quant_results[quant_results['residual'].abs() < 0.5].sample(n=5)
return {
"outliers": high_residual,
"typical": typical,
"rationale": "Comparing outlier and typical cases to explain model misfit"
}
Exploratory Sequential Design (qual → QUAN)
Qualitative data is collected first to explore a phenomenon; findings inform the development of a quantitative instrument or phase.
Notation: qual → QUAN → Interpretation
Timeline:
Phase 1: Qualitative data collection & analysis
Phase 2: Develop quantitative instrument/variables from qual findings
(e.g., survey items derived from interview themes)
Phase 3: Quantitative data collection & analysis
Phase 4: Integration and interpretation
Connection point: Qualitative findings generate hypotheses, variables, or instruments
for the quantitative phase
Common applications:
- Instrument development (qual themes → survey items → psychometric validation)
- Taxonomy development (qual categories → quantitative classification testing)
- Theory generation (qual grounded theory → quantitative hypothesis testing)
Instrument development workflow:
Qualitative Phase:
Interviews (n=20-30) → Thematic analysis → Identify constructs and language
Connecting Bridge:
Themes → Item pool → Expert review → Cognitive interviews → Pilot items
Quantitative Phase:
Survey (n=300+) → Exploratory factor analysis → Confirmatory factor analysis
→ Reliability testing → Validity evidence (convergent, discriminant, criterion)
Embedded Design (QUAN[qual] or QUAL[quan])
One strand is primary; the other is embedded within it to enhance the primary design.
Notation: QUAN(qual) — Quantitative primary with embedded qualitative
Example: Randomized controlled trial with embedded qualitative process evaluation
┌─────────────────────────────────────────────┐
│ RCT (Primary Quantitative Design) │
│ │
│ Treatment group ──→ Outcome measures │
│ │ │
│ └──→ [Qualitative interviews at │
│ midpoint to understand │
│ implementation fidelity │
│ and participant experience] │
│ │
│ Control group ──→ Outcome measures │
└─────────────────────────────────────────────┘
Purpose: The qualitative strand answers a secondary question
within the larger quantitative framework
Transformative Design
Any mixed methods design organized within a transformative theoretical framework (feminist, critical race theory, disability studies, postcolonial, etc.) that centers equity, justice, and the perspectives of marginalized communities.
Key principles:
1. Research questions address power, oppression, or social justice
2. Marginalized community members participate in design decisions
3. Methods are selected to amplify silenced voices
4. Integration explicitly examines how findings relate to structural inequity
5. Results include action agendas and recommendations for change
Notation adds a framework wrapper:
Transformative Framework [QUAL → QUAN]
or
Transformative Framework [QUAL + QUAN]
Multiphase Design
A programmatic approach where multiple mixed methods projects build on each other over time, common in large-scale program evaluation and longitudinal research.
Notation: Study 1 (QUAN) → Study 2 (qual) → Study 3 (QUAL + QUAN) → ...
Example: Multi-year curriculum evaluation program
Year 1: Needs assessment (QUAL → QUAN)
Year 2: Pilot intervention (QUAN with embedded qual)
Year 3: Full-scale RCT (QUAN → qual for process evaluation)
Year 4: Sustainability study (QUAL + QUAN convergent)
2. The Notation System
The Creswell & Plano Clark notation system communicates design decisions concisely:
Symbol Reference:
UPPERCASE = Priority/emphasis strand (e.g., QUAN = quantitative is primary)
lowercase = Secondary/supplementary strand (e.g., qual = qualitative is secondary)
+ = Concurrent/simultaneous collection
→ = Sequential collection (left happens before right)
( ) = Embedded strand within a larger design
[ ] = Framework wrapper (e.g., transformative, pragmatic)
{ } = Sometimes used for the integration/merging phase
Common patterns:
QUAN + QUAL Convergent, equal weight
QUAN → qual Explanatory sequential, quantitative dominant
qual → QUAN Exploratory sequential, quantitative dominant
QUAN(qual) Embedded qualitative within quantitative
Trans[QUAL + QUAN] Transformative convergent design
Expanded notation (Morse, 2003):
Uses + for simultaneous, → for sequential
All caps for driving component, lowercase for supplementary
Example: QUAL + quan (qualitative-dominant concurrent)
3. Integration Strategies
Integration is the hallmark of mixed methods research. Without intentional integration, you have a multi-method study, not a mixed methods study.
Merging (for convergent designs)
Merging Techniques:
1. Side-by-side comparison
- Present quantitative and qualitative findings in parallel
- Use a joint display to compare directly
- Assess convergence, complementarity, or divergence
2. Data transformation
a. Quantitizing: Converting qualitative data to numeric form
- Frequency counts of themes across participants
- Binary coding of theme presence/absence
- Rating scales applied to qualitative categories
b. Qualitizing: Converting quantitative data to qualitative form
- Creating narrative profiles from cluster analysis results
- Developing case descriptions from survey response patterns
3. Joint displays (see templates below)
Connecting (for sequential designs)
Connecting Techniques:
1. Building (qual → QUAN)
- Qualitative findings directly inform quantitative design
- Example: Interview themes → survey items → factor analysis
2. Explaining (QUAN → qual)
- Quantitative results identify what to explore qualitatively
- Example: Regression outliers → purposeful sampling → interviews
3. Participant selection
- One strand identifies participants for the other
- Example: Survey screening → interview sample selection
Embedding
Embedding Techniques:
1. Within-design embedding
- Secondary strand operates within the primary design structure
- Example: Process evaluation interviews within an RCT
2. Framework embedding
- Both strands serve a larger theoretical or programmatic purpose
- Data integration occurs at the framework level
4. Joint Displays
Joint displays are visual representations that bring quantitative and qualitative findings together in a single display for integrated analysis. Four ready-to-use layouts — side-by-side comparison, statistics-by-themes matrix, case-oriented display, and process/timeline display — plus a worked convergent-design example are in references/joint_display_templates.md. Copy a template, populate both strands, then add the integration/meta-inference column.
5. Meta-Inferences
Meta-inferences are the overarching conclusions drawn from integrating quantitative inferences and qualitative inferences. They represent the "value added" of mixed methods.
Meta-Inference Development Process:
Step 1: State quantitative inferences
"Survey data indicate that 73% of participants improved on outcome X,
with intervention dosage as the strongest predictor (β = .45, p < .001)."
Step 2: State qualitative inferences
"Interview data reveal three pathways to improvement: peer support,
self-directed practice, and facilitator scaffolding. Participants
described dosage as necessary but insufficient without peer support."
Step 3: Develop meta-inferences
"Integrating both strands, dosage operates as a quantitative proxy for
engagement intensity, but the qualitative mechanism is relational —
higher dosage provides more opportunity for peer support, which is
the active ingredient. This suggests interventions should optimize
for peer interaction quality, not merely contact hours."
Quality criteria for meta-inferences:
- Integrative efficacy: Does the meta-inference go beyond either strand alone?
- Interpretive consistency: Is it supported by both strands of evidence?
- Interpretive distinctness: Does it offer a unique insight?
- Integrative correspondence: Does it address the mixed methods research question?
6. Quality Criteria for Mixed Methods Research
Rigor is judged against Onwuegbuzie & Johnson's (2006) nine legitimation types — sample integration, inside-outside, weakness minimization, sequential, conversion, paradigmatic mixing, commensurability, multiple validities, and political legitimation — plus Creswell & Plano Clark's additional standards (clear mixed methods question, justified rationale, rigorous individual strands, explicit integration, coherent worldview, feasibility). The full annotated legitimation framework and standards, alongside GRAMMS and MMAT checklists, are in references/mixed-methods-frameworks.md.
7. Software Tools for Mixed Methods Integration
Dedicated platforms (NVivo, MAXQDA, Dedoose) support integrated projects and joint displays; quantitative work runs in R, SPSS, Stata, or Python, qualitative work in the CAQDAS tools above, and integration/visualization in R, Python, or Tableau. The full annotated catalog — including data-management (OSF, REDCap, Qualtrics) and diagramming (Lucidchart, draw.io, TikZ) tools — is in references/software_and_reporting.md.
8. Writing a Mixed Methods Methods Section
A methods section names and diagrams the design, describes sampling and data collection per strand, and — critically — makes the integration procedures explicit, then reports strand-specific and mixed methods quality criteria. The full section-by-section template (Research Design, Participants and Sampling, Data Collection, Data Analysis, Quality and Rigor) is in references/software_and_reporting.md.
9. Common Mixed Methods Research Questions
Mixed methods questions take three structures: a single hybrid question, separate strand questions plus an integration question, or phased questions for sequential designs. Worked examples of each are in references/software_and_reporting.md.
Best Practices
-
Start with the research question — Let the question dictate the design, not the other way around. If a single method can answer your question, do not use mixed methods just to appear rigorous.
-
Name and diagram your design — Use the Creswell & Plano Clark notation and include a visual procedural diagram in every proposal and manuscript.
-
Plan integration from the start — Integration is not an afterthought. Specify integration points, strategies, and expected products (joint displays, meta-inferences) in your proposal.
-
Build a team with diverse expertise — Few researchers are expert in both advanced quantitative and qualitative methods. Collaborate with specialists in each tradition.
-
Budget time and resources realistically — Mixed methods takes longer and costs more. A convergent design requires running two full studies simultaneously. Sequential designs require waiting for Phase 1 results before designing Phase 2.
-
Use the notation system consistently — Uppercase for priority strand, lowercase for supplementary, arrows for sequence, plus signs for concurrent collection.
-
Address philosophical foundations — Reviewers will ask. Pragmatism is the most common worldview, but transformative, critical realist, and dialectical positions are also legitimate. State your position and its implications.
-
Report integration explicitly — The most common reviewer critique of mixed methods papers is "these are two separate studies stapled together." Prevent this by dedicating a results section to integration findings, using joint displays, and articulating meta-inferences.
-
Pilot both strands — Pilot your quantitative instruments AND qualitative protocols. For sequential designs, pilot the connection between phases.
-
Follow reporting guidelines — Use the GRAMMS (Good Reporting of A Mixed Methods Study) guidelines or the Mixed Methods Appraisal Tool (MMAT) as a checklist.
Common Pitfalls
-
No actual integration — Collecting both types of data but analyzing and reporting them separately without integration. This is multi-method research, not mixed methods.
-
Superficial qualitative strand — Adding a few open-ended survey questions and calling it mixed methods. True qualitative strands require purposeful sampling, rich data, and systematic analysis.
-
Mismatch between design and execution — Claiming an explanatory sequential design but collecting qualitative data concurrently because of time pressure. Name the design you actually used.
-
Ignoring discrepant findings — When quantitative and qualitative findings conflict, this is often the most interesting result. Do not suppress discrepancies; analyze and discuss them.
-
Inadequate sampling justification — Not explaining why the quantitative sample is 500 but the qualitative sample is 15. Different strands have different sampling logics and different adequacy criteria.
-
Missing philosophical discussion — Failing to articulate why combining paradigms is defensible in your study. Reviewers in methods-focused journals will flag this.
-
Overcomplicating the design — Using multiphase or complex embedded designs when a simple convergent or sequential design would suffice. Match complexity to the research question.
-
Insufficient expertise — Attempting advanced mixed methods without training or collaboration in both traditions. Each strand must meet the quality standards of its own tradition.
-
Timing failures in sequential designs — Not leaving enough time between phases to analyze Phase 1 results and design Phase 2. This is a project management issue that undermines methodological rigor.
-
Vague integration language — Saying findings were "combined" or "synthesized" without specifying how. Use precise integration vocabulary: merged via joint display, connected through participant selection, embedded within experimental design.
References
- Creswell, J. W., & Plano Clark, V. L. (2018). Designing and Conducting Mixed Methods Research (3rd ed.). Sage.
- Teddlie, C., & Tashakkori, A. (2009). Foundations of Mixed Methods Research. Sage.
- Morse, J. M. (2003). Principles of mixed methods and multimethod research design. In A. Tashakkori & C. Teddlie (Eds.), Handbook of Mixed Methods in Social and Behavioral Research (pp. 189-208). Sage.
- Onwuegbuzie, A. J., & Johnson, R. B. (2006). The validity issue in mixed research. Research in the Schools, 13(1), 48-63.
- Fetters, M. D., Curry, L. A., & Creswell, J. W. (2013). Achieving integration in mixed methods designs—principles and practices. Health Services Research, 48(6pt2), 2134-2156.
- Guetterman, T. C., Fetters, M. D., & Creswell, J. W. (2015). Integrating quantitative and qualitative results in health science mixed methods research through joint displays. Annals of Family Medicine, 13(6), 554-561.
- O'Cathain, A., Murphy, E., & Nicholl, J. (2008). The quality of mixed methods studies in health services research. Journal of Health Services Research & Policy, 13(2), 92-98.
- Schoonenboom, J., & Johnson, R. B. (2017). How to construct a mixed methods research design. Kolner Zeitschrift fur Soziologie und Sozialpsychologie, 69(Suppl 2), 107-131.
See also:
references/mixed-methods-frameworks.md— design typology comparisons, detailed integration techniques, legitimation framework, GRAMMS/MMAT checklists, philosophical worldviews, and reading lists.references/joint_display_templates.md— four joint display layouts plus a worked convergent-design example.references/software_and_reporting.md— software catalog, methods-section template, and research-question structures.
Part of the AlterLab Academic Skills suite.
What ships with it: 4 files
24.0 KB alongside SKILL.md
evals/
- evals.json5.3 KB