Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Visualizing Missingness in Patient Data

EasyStatistics & Probability00:00
Practice interviewer
In session
5 left
00:00

Your question is Visualizing Missingness in Patient Data. Take a moment with it on the right.

Talk me through your thinking if you like. When you're confident, submit your answer and I'll grade it like a real screen (7/10 or better passes).

You need to log in / sign up to chat or submit.

Problem

Business Context

MediPulse is preparing a patient-risk dataset for a hospital readmission model. Before any imputation or modeling, the analytics team wants to understand whether missing values are random, concentrated in certain fields, or associated with patient outcomes.

Problem Statement

You are given summary statistics from a 5,000-row dataset. Your task is to quantify the missingness pattern and recommend the most informative visualizations. Also test whether missingness in one key variable appears related to the target outcome.

Given Data

VariableMissing CountMissing Rate
Age501.0%
Income60012.0%
Blood Pressure4258.5%
Cholesterol90018.0%
Smoking Status3006.0%
Readmitted in 30 Days00.0%

Additional joint missingness and outcome data:

MetricValue
Total rows5000
Rows with both Income and Cholesterol missing420
Readmitted among Income missing138 of 600
Readmitted among Income observed690 of 4400
Significance level0.05

Requirements

  1. Compute the missingness rate for each variable and identify the most problematic fields.
  2. Quantify whether Income and Cholesterol missingness co-occur more than expected under independence.
  3. Test whether Income missingness is associated with 30-day readmission using a two-proportion z-test.
  4. Recommend 3 specific visualizations, explain what each would show, and state which one you would start with.
  5. Briefly explain what the results imply about whether missingness may be MCAR versus systematically related to other variables.

Assumptions

  • Each row represents one unique patient encounter.
  • Missing means the value is unavailable, not structurally inapplicable.
  • The normal approximation is acceptable for the proportion test because group sizes are large.