Timeline
24 mo
Jan 2023 - Dec 2024
Events
4,000+
Organizational data points
Growth
3K → 4K+
Employee expansion
Overview
The Healthcare AI Pivot Dataset captures a comprehensive 24-month organizational transformation as a healthcare technology company integrates AI capabilities. This rich dataset tracks the evolution from traditional software development to AI-driven healthcare solutions, including department restructuring, international expansion, and the establishment of new specialized teams.
Dataset Structure
The dataset provides a complete view of organizational change through interconnected event logs and employee states. It includes detailed records of hires, departures, role changes, and department restructuring, along with rich demographic and organizational metadata.
Events
Employee
Demographics
Changes
Relationships
File Structure
Transformation Timeline
Phase 1: Healthcare AI Transformation
Jan-Mar 2023Phase 2: Engineering Split & Healthcare Focus
Apr-Jul 2023Phase 3: Clinical Integration & Global Expansion
Aug-Dec 2023Phase 4: Product Evolution
Jan-Jun 2024Phase 5: Global Healthcare AI Leadership
Jul-Dec 2024Global Impact
European Operations
Asia-Pacific Center
Clinical Excellence
Global Infrastructure
Example Queries
-- Track department size changes over time
SELECT
date_trunc('month', event_date) as month,
department,
count(distinct employee_id) as headcount
FROM events
WHERE event_type IN ('hire', 'job_change', 'termination')
GROUP BY 1, 2
ORDER BY 1, 2;
-- Analyze transitions to AI roles
SELECT
e.department as from_dept,
c.changes->>'department' as to_dept,
count(*) as transition_count
FROM events e
JOIN changes c ON e.event_id = c.event_id
WHERE e.event_type = 'job_change'
AND (e.department LIKE '%Engineering%'
OR c.changes->>'department' LIKE '%AI%')
GROUP BY 1, 2
ORDER BY 3 DESC;
-- Track leadership role changes
SELECT
event_date,
employee_id,
changes->>'from_role' as previous_role,
changes->>'to_role' as new_role
FROM events
WHERE event_type = 'job_change'
AND (
changes->>'from_role' LIKE '%Director%'
OR changes->>'from_role' LIKE '%VP%'
OR changes->>'to_role' LIKE '%Director%'
OR changes->>'to_role' LIKE '%VP%'
)
ORDER BY event_date;
-- Analyze hiring patterns by region
SELECT
date_trunc('month', hire_date) as month,
office_location,
count(*) as new_hires
FROM employees
WHERE hire_date >= '2023-08-01' -- Phase 3 start
AND office_location IN ('London', 'Singapore')
GROUP BY 1, 2
ORDER BY 1, 2;
-- Track team diversity metrics over time
WITH monthly_stats AS (
SELECT
date_trunc('month', event_date) as month,
department,
count(distinct case when demographics->>'gender' = 'Woman' then employee_id end) as women,
count(distinct employee_id) as total
FROM events
WHERE event_type IN ('hire', 'job_change', 'termination')
GROUP BY 1, 2
)
SELECT
month,
department,
round((women::float / total) * 100, 2) as women_percentage
FROM monthly_stats
ORDER BY 1, 2;
Use Cases
HR & People Analytics Teams
Visualize complex organizational dynamics like hiring patterns, team growth, and leadership structures.
Data Scientists & Analysts
Train models with rich, narrative-driven data to identify patterns and validate algorithms.
Product & Sales Teams
Enhance product demos with authentic datasets that resonate with customers.
Professors & Educators
Provide students with realistic datasets for teaching decision-making in leadership and HR.