HEALTHCARE ANALYTICS PROJECT
A comprehensive portfolio project demonstrating advanced healthcare analytics skills using Power BI, DAX, and data transformation techniques.
This project showcases an end-to-end data analysis of hospital emergency department operations. It focuses on identifying opportunities to improve patient flow, optimize wait times, and enhance overall satisfaction scores.
By integrating data from various hospital systems, we created a star schema data model to enable sophisticated analysis of demographic correlations, department performance, and temporal patterns.
Calculates the average wait time for patients, filtering for valid completed visits.
Avg Wait Time =
CALCULATE(
AVERAGE('Patient Visits'[Wait Time Minutes]),
'Patient Visits'[Status] = "Completed",
'Patient Visits'[Wait Time Minutes] > 0
)
Uses time intelligence to look back at the previous 30 days to track satisfaction trends.
Satisfaction 30d Rolling =
CALCULATE(
[Average Satisfaction Score],
DATESINPERIOD(
'Calendar'[Date],
LASTDATE('Calendar'[Date]),
-30,
DAY
)
)
Ranks hours of the day by patient volume to identify staffing bottlenecks.
Hour Rank =
RANKX(
ALL('Time'[Hour]),
[Total Visits],
,
DESC,
Dense
)