Clicky

Home » Practice Verticals » Academic Practice » PhDStats Advisor » PhD Statistical Analysis Guides » Ph.D. Statistical Data Analysis Case Studies » “What if” Variations » Case Study: Sensitivity Analyses for Threshold Effects in Categorical Engagement

Case Study: Sensitivity Analyses for Threshold Effects in Categorical Engagement


Purpose

Likert scale what if analysis was used to gauge how definitional choices for “High Intent” impact conclusions, three scenario analyses were conducted on the transformed Likert composites:


1. Strict Definition

Rule: A respondent counts as “High Intent” only if:

  • Their composite score equals 3 (Agree), and
  • Each individual item in that composite is rated ≥ 4 on the original 5‑point scale.

Implementation:

df <- df %>%
mutate(strict_intent = if_else(
comp_usability == 3 & Q1 >= 4 & Q4 >= 4 & Q7 >= 4,
1, 0))

Rationale & Impact:

  • First, this rule zeroes in on truly enthusiastic respondents—those who “agree” overall and hit top marks on each question.
  • Then, statistical tests (e.g., chi‑square, odds ratios) compare strict_intent rates by subgroup.
  • Result: You typically see smaller High Intent rates (e.g., 47%) but larger effect sizes (e.g., OR = 2.8), since the contrast between groups is sharper.

2. Neutral‑Inclusive Definition

Rule: Anyone with a composite score ≥ 2 (Neutral or Agree) is “High Intent.”

Implementation:

df <- df %>%
mutate(inclusive_intent = if_else(comp_usability >= 2, 1, 0))

Rationale & Impact:

  • Moreover, this broader rule captures both neutral and positive attitudes, reflecting a more forgiving view of “intent.”
  • Consequently, High Intent rates rise (e.g., 79%), but the statistical significance and effect sizes often shrink (e.g., OR = 1.4).
  • However, this approach can understate differences if many neutrals exist in one group.

3. Continuous Modeling

Rule: Use the raw composite mean (1–3) directly in regression models rather than dichotomizing.

Implementation Examples:

  • Ordinal Logistic Regression:
polr_fit <- MASS::polr(
factor(comp_usability) ~ hospital_type + covariates,
data = df, Hess=TRUE)

Linear Regression:

lm_fit <- lm(comp_usability ~ hospital_type + covariates, data = df)

Rationale & Impact:

  • Finally, continuous models preserve the full granularity of the composite score, avoiding information loss from cut‑points.
  • In practice, these models yield robust odds ratios (e.g., OR = 2.1 per one‑unit increase) and allow easy inclusion of covariates.
  • Furthermore, continuous analysis reduces bias from arbitrary thresholds and enhances statistical power.

Implementation (whatif_scenarios.R) for Likert scale what if analysis

df <- read_csv(\"likert_masterchart.csv\")
# Scenario 1
df <- df %>%
  mutate(strict_intent = if_else(comp_usability==3 & Q1>=4 & Q4>=4 & Q7>=4, 1, 0))
# Scenario 2
df <- df %>% mutate(inclusive_intent = if_else(comp_usability>=2, 1, 0))
# Scenario 3 uses comp_usability directly

Results Comparison from Likert scale what if analysis

ScenarioHigh Intent RateOdds Ratio (95 % CI)χ² p-value
Baseline58 %< 0.001
Strict47 %OR=2.8 (2.0–3.9)< 0.001
Inclusive79 %OR=1.4 (1.1–1.9)0.047
ContinuousOR=2.1 (1.4–3.2)
  • Strict Scenario: Amplified group differences, yielding larger effect sizes.
  • Inclusive Scenario: Diluted significance, showing threshold choice can flip conclusions.
  • Continuous Models: Maintained robust ORs and facilitated covariate adjustments.

Recommendations from Likert scale what if analysis

  • Pre-Register Thresholds: Avoid post-hoc definitional bias.
  • Report Multiple Scenarios: Transparently show how definitions affect key findings.
  • Leverage Continuous Models: Preserve full information for nuanced inference.

Explore Other Cases Under this Module

Case Study: “What If” Scenario Analyses for Likert-Scale Data in a Public Health Dissertation

This case study explores three “What If” sensitivity analyses on Likert-scale data in a Public Health dissertation—covering threshold effects, continuous modeling, and implications for research validity.
Read

Case Study: “What If” Scenario Analysis for a Quasi-Experimental Educational Intervention

This case study showcases how “What If” scenario analysis using R can improve the impact and scalability of quasi-experimental educational interventions in Ph.D. research.
Read

Explore Other Modules Under this Guide

Ph.D. Statistical Field Specific Deep Dives

Ph.D. statistical field‑specific deep dives present tailored case studies across diverse disciplines. Firstly, these deep dives focus on contextual research needs and specialized techniques. Additionally, concise explanations guide you through discipline‑driven choices. Consequently, you gain targeted insights to apply in your dissertation.
Explore Cases

Ph.D. Statistical Lessons Learned Best Practices

Ph.D. statistical lessons learned and best practices compile critical insights from completed dissertations. Firstly, this collection synthesizes what worked well and what did not. Moreover, it highlights real‑world research challenges and solutions. Consequently, you benefit from distilled expertise without sifting through lengthy reports.
Explore Cases

Ph.D. Statistical Methodology Centered Examples

Ph.D. statistical methodology-centered examples demonstrate core techniques applied step by step. Firstly, each example breaks down statistical procedures into clear stages. Additionally, concise explanations focus on ANOVA, multilevel models, and structural equation modeling. Consequently, you build confidence in selecting and justifying methods.
Explore Cases

Ph.D. Statistical Software Workflow Walkthroughs

Ph.D. statistical software and workflow walkthroughs equip you with step‑by‑step guidance through leading analysis tools. Firstly, each walkthrough shows practical setup steps and code. Additionally, concise instructions focus on reproducible research principles. Consequently, you develop efficient habits for your dissertation analyses.
Explore Cases

Explore Our Other Guides

Ethical Ph.D. Research Hacks

Ethical Ph.D. research hacks offer practical shortcuts that uphold integrity while improving workflow efficiency. This guide focuses on faculty–scholars managing research responsibilities under time constraints. Moreover, each hack emphasizes ethics without sacrificing analytical depth.
Explore Hacks

Ph.D. Statistical Data Analysis Critiques

Ph.D. statistical data analysis critiques guide you through rigorous evaluation of statistical methods in dissertations. This content highlights how to spot methodological flaws and biases. Moreover, it demonstrates strategies for constructive critique that improve research quality.
Explore Critiques

Research Advice

This basic advice is available freely for Ph.D. / Doctoral Faculty Scholars in India.
Explore Advice

Our Services

📊 Data Analysis

🎓 Ph.D. Consulting

🚀 Business Engineering


Who is a Data Scientist?

Expert in statistical analysis, predictive modeling, and data-driven insights for research and business solutions.
Learn More

About Us

Credentials

Comprehensive overview of skills, work ethic, and professional qualifications.
Explore

Practice Verticals

Independent freelancing professional for data-driven research across multiple domains.
Explore

Get in Touch

Use any of the methods below to contact me. Please note our preferred channels and business hours.
Explore

Consultation Fee ₹2,000/- per hour (By Appointment Only)