driver_skill_residual_s the component of lap time left over once all six modelled physics terms have been subtracted. Drivers with a tight, negative cluster are delivering better-than-expected pace, consistently. Drivers scattered wide are brilliant sometimes and costly others.
What the chart shows
The scatter plot places every driver on two axes derived fromfct_driver_skill_features:
- X-axis mean residual (
driver_residual_mean_s): the average delta between a driver’s actual pace and what the physics model predicts given their exact conditions. Negative means the driver is consistently faster than circumstances alone would explain; positive means they are leaving time on the table on average. - Y-axis standard deviation (
driver_residual_stddev_s): the lap-to-lap variance of that residual. A low value means consistent delivery; a high value means hot laps and cold ones in equal measure.
Only clean laps are included. The query filters to rows where
clean_lap_count >= 10 and both residual statistics are non-null, so drivers with very short sample seasons may not appear.How to use it
- Select a season using the filter bar at the top of the page. The chart reloads automatically with the new season’s data.
- Hover over any point to see the driver’s name, constructor, mean residual, standard deviation, and clean lap count for that season.
- Compare quadrant positions across seasons by switching the season filter a driver migrating from top-right (fast but erratic) toward bottom-left over multiple years is developing consistency.
- Export the data using the CSV button in the page header if you want to do your own analysis against the raw residual statistics.
Reading the signal correctly
A negative mean residual means the driver outperforms what the physics model predicts, not just that they are fast in absolute terms. The model has already accounted for having a faster car, fresher tyres, lighter fuel, cleaner air, and better track temperature. What remains is something the driver is doing that the model cannot attribute to those factors. A positive mean residual means the driver is, on average, delivering less pace than their exact set of conditions would predict. This is not the same as being a slow driver it may reflect a car that demands a particular driving style the model underestimates. A low standard deviation means that signal positive or negative is reproducible. A high standard deviation means the driver has more lap-to-lap variance after conditions are controlled, which could indicate sensitivity to tyre windows, traffic effects not fully captured by the dirty-air term, or genuine inconsistency.Data source
The chart queriesfct_driver_skill_features via DuckDB-Wasm in the browser. The underlying residuals are computed by the seven-term additive decomposition pipeline and enforced lap-by-lap in the warehouse by the assert_additive_identity CI check. Season-level aggregates are produced by averaging across all clean laps per driver per season.
The data window covers 2018–2024.