Overview
Readiness Scores give you a daily signal for how prepared a user is to take on load, based on their recent sleep and overnight physiology. This helps you track recovery trends, identify rising stress or strain, and understand whether sleep patterns are supporting day-to-day performance. Thederived_readiness table returns one row per user and calendar day with:
sleep_scorerecovery_scoreandrecovery_zonestress_scorestrain_scoreandstrain_zonechronotype
What you can do
- Pull one scored row per day for charting or downstream analytics.
- Filter for specific cohorts (for example, low recovery or high strain days).
- Group and aggregate scores like any other table.
DerivedReadiness.index() is a synonym of DerivedReadiness.col("date").How calculations work
Readiness Scores are computed from each user’s daily long sleep session using:- sleep duration
- resting heart rate during sleep
- HRV during sleep
- Junction sleep score
Baseline and warm-up
- Recovery and stress are personalized against a rolling baseline from prior nights.
- Baseline window is 21 days, with a minimum of 7 prior observations.
- Before enough history exists,
recovery_score,stress_score, andstrain_scorecan benull.
Recovery score (0-100)
Recovery combines three signals:- HRV relative to personal baseline (higher is better)
- resting heart rate relative to baseline (lower is better)
- sleep duration relative to an 8-hour target
0-100 scale with a logistic curve.Higher
recovery_score means better readiness.
Stress score (0-100)
Stress is the inverse of recovery:stress_score = 100 - recovery_score
stress_score means greater physiological stress burden.
Strain score (0-21)
Strain combines:- recovery load (how far recovery is below a neutral threshold), and
- sleep load (sleep debt relative to 8 hours).
0-21 score.Higher
strain_score means greater expected load/strain.
Missing-data behavior
- Missing HRV or resting heart rate:
recovery_scoreandstress_scorearenull. - Missing sleep duration:
strain_scoreisnull. sleep_scoreis returned when available.
This section describes the current Readiness model. If you need deeper methodology details for your use case, contact the Junction team.
Available columns and meanings
| Column | Meaning |
|---|---|
date | Daily index (YYYY-MM-DD). |
chronotype | Daily chronotype category from sleep timing patterns. |
sleep_score | Sleep quality score (0-100), where higher is better sleep quality. |
recovery_score | Readiness score (0-100), where higher means better recovery readiness. |
recovery_zone | Recovery band: Red (0-33, low), Amber (34-66, moderate), Green (67-100, high). |
stress_score | Stress score (0-100), where higher means higher physiological stress load. |
strain_score | Daily strain (0-21), where higher means greater combined sleep/recovery load. |
strain_zone | Strain band: Low (0-6), Moderate (7-13), High (14-17), Very High (18-21). |