TOOLS USED -
SQL - Extract and analyze patient and appointment data
POWERBI - Clean data & design dashboards to visualize no-show trends and risk factors.
Workflow
Data Collection - Data was collected on from electronic patient records (EPR) on-
Patient demographics (age, gender, zip code)
Appointment details (date, time, type, clinic).
Reasons for No-shows
Number of No-shows.
Lead time between booking and appointment date.
Data Cleaning
PowerBI was used to -
Data Analysis with SQL
Query data to:
SQL code -
-- Analyze no-show rates by patient demographics
SELECT
Gender,
Age_Group,
Location,
AVG(No_Show) AS Avg_No_Show_Rate,
COUNT(*) AS Total_Appointments,
SUM(CASE WHEN No_Show > 0 THEN 1 ELSE 0 END) AS Total_No_Shows
FROM
hospital_appointments
GROUP BY
Gender, Age_Group, Location
ORDER BY
Avg_No_Show_Rate DESC;
-- Analyze no-show rates by appointment time slots
SELECT
LEFT(Appointment_Time, 2) AS Hour, -- Group by hour
AVG(No_Show) AS Avg_No_Show_Rate,
COUNT(*) AS Total_Appointments,
SUM(CASE WHEN No_Show > 0 THEN 1 ELSE 0 END) AS Total_No_Shows
FROM
hospital_appointments
GROUP BY
LEFT(Appointment_Time, 2)
ORDER BY
Hour;
-- Analyze no-show reasons
SELECT
Reasons_For_Missed_Appointment,
COUNT(*) AS Total_No_Shows,
ROUND(COUNT(*) * 100.0 / SUM(COUNT(*)) OVER (), 2) AS Percentage_Of_No_Shows
FROM
hospital_appointments
WHERE
No_Show > 0
GROUP BY
Reasons_For_Missed_Appointment
ORDER BY
Total_No_Shows DESC;
-- Analyze no-show rates by appointment types
SELECT
Appointment_Type,
AVG(No_Show) AS Avg_No_Show_Rate,
COUNT(*) AS Total_Appointments,
SUM(CASE WHEN No_Show > 0 THEN 1 ELSE 0 END) AS Total_No_Shows
FROM
hospital_appointments
GROUP BY
Appointment_Type
ORDER BY
Avg_No_Show_Rate DESC;
-- Correlation between no-shows and appointment lead times
SELECT
Lead_Time,
AVG(No_Show) AS Avg_No_Show_Rate,
COUNT(*) AS Total_Appointments,
SUM(CASE WHEN No_Show > 0 THEN 1 ELSE 0 END) AS Total_No_Shows
FROM
hospital_appointments
GROUP BY
Lead_Time
ORDER BY
Lead_Time;
-- Optional: Combine demographic and appointment type analysis
SELECT
Gender,
Age_Group,
Appointment_Type,
AVG(No_Show) AS Avg_No_Show_Rate,
COUNT(*) AS Total_Appointments,
SUM(CASE WHEN No_Show > 0 THEN 1 ELSE 0 END) AS Total_No_Shows
FROM
hospital_appointments
GROUP BY
Gender, Age_Group, Appointment_Type
ORDER BY
Avg_No_Show_Rate DESC;
Data Visualizations with PowerBI
1. No-Show Rates by Patient Demographics
Gender
, Age_Group
, Location
, Avg_No_Show_Rate
, Total_No_Shows
.Avg_No_Show_Rate
) by Gender
and Age_Group
.Location
.Age_Group
.
Hour
, Avg_No_Show_Rate
, Total_No_Shows
.Avg_No_Show_Rate
) by Hour
.Total_No_Shows
) by Hour
and Appointment_Type
.Reasons_For_Missed_Appointment
, Total_No_Shows
, Percentage_Of_No_Shows
.Appointment_Type
, Avg_No_Show_Rate
, Total_No_Shows
.Avg_No_Show_Rate
) for each Appointment_Type
.Appointment_Type
.Lead_Time
, Avg_No_Show_Rate
, Total_No_Shows
.Lead_Time
) vs. no-show rate (Avg_No_Show_Rate
).Lead_Time
.Gender
, Age_Group
, Appointment_Type
, Avg_No_Show_Rate
.Appointment_Type
split by Gender
.Age_Group
and Appointment_Type
.Insights Gleaned from the data Analysis -
1. Demographics Most Represented in No-Shows:
Strategies to mitigate the issues identified in the Analysis
Tailored Reminder Systems - Implement SMS, email, or automated call reminders specifically targeted at the 19–35 age group, with multiple reminders (e.g., one week, three days, and one day before the appointment).
Education Campaigns - Highlight the importance of attending appointments, especially routine checkups, through social media or direct communication.
Analyze high-risk time slots (e.g., 10 AM–11 AM) and reduce the number of appointments during those hours, shifting patients to lower-risk slots.
Allow for minor delays (e.g., a 15-minute grace period) during high no-show times, which could help mitigate missed appointments caused by lateness.
Provide virtual options for routine checkups, making it easier for patients to attend.
Combine routine checkups with other health services (e.g., diagnostic tests or specialist visits) to increase perceived value.
Require a refundable deposit for high-value appointments, refundable only upon attendance or rescheduling in advance.
Offer loyalty points, discounts, or incentives for patients who consistently show up for their appointments.