As Paula Radcliffe bids goodbye to the London Marathon, here’s why her world records will stand the test of time
The world’s best long distance runners have taken to the capital’s streets to compete in the London marathon, yet much of the nation’s attention will be focused not on the elite field, but in the masses of club athletes and in particular one 41-year-old who has recently been struggling with an achilles injury.
More on this story: Here's everything you need to know about the marathon – including tips, weather forecast and elite runners
Paula Radcliffe is running in her final London Marathon, the race in which she set a world record time of 2:15:25 some 12 years ago.
Organisers are pushing the #thankyoupaula hashtag, while tributes are sure to sound out from the crowds lining the Mall for the athlete whose records have not only been unmatched, but exist in a category of their own.
As demonstrated in our graphic below displaying the 2,500 fastest times in women’s marathon history, no one has even got near Radcliffe’s 2003 record in London nor at any other marathon. Neither has Radcliffe’s woman-only race record of 2:17:42 set in London in 2005 been in any danger of being trumped. On desktop, you can hover over any dot to see who ran that time, when, and where. Click on the prompts to highlight times run in London, or Paula's times.
#cam-d3-paula .axis path, #cam-d3-paula .axis line { fill: none; stroke: #069ddc; storke-weight: 6px shape-rendering: crispEdges; }
#cam-d3-paula .dot { stroke: #fff; }
#cam-d3-paula .tooltip { position: absolute; top: 160px; left: 100px; width: 200px; text-align: left; padding: 10px; font: 16px sans-serif; border: 4px solid #069ddc ; border-radius: 8px; pointer-events: none; } #cam-d3-paula div.tooltip p { margin: 0; padding: 0; } #cam-d3-paula div.tooltip h2 { margin: 0; padding: 0 0 0.5em 0; }
var x = d3.time.scale() .range([0, width]);
var y = d3.scale.linear() .range([-900, height]);
var radiusScale = d3.scale.sqrt();
var tooltip = d3.select("#cam-d3-paula") .append("div") // declare the tooltip div .attr("class", "tooltip") // apply the 'tooltip' class .style("opacity", 0);
//var color = d3.scale.category10();//
var xAxis = d3.svg.axis() .scale(x) .orient("bottom") ;
var yAxis = d3.svg.axis() .scale(y) .orient("left");
/*var zoom = d3.behavior.zoom() .x(x) .y(y) .scaleExtent([1, 10]) .on("zoom", zoomed);*/
//function zoomed() { //svg.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")"); //};
var svg = d3.select("#cam-d3-paula").append("svg") .attr("width", width + margin.left + margin.right) .attr("height", height + margin.top + margin.bottom) .append("g") .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); //.attr("class", "allDots"); //.call(zoom);
d3.csv("https://www.cityam.com/wp-content/uploads/2015/04/data-553a001f20413.csv", function(error, data) { data.forEach(function(d) { d.date = parseDate(d.date) d.age = +d.age d.time = +d.time; });
var colourReset = function() {
d3.selectAll(".dot").style("fill", "gray");}
var sizeReset = function() {
d3.selectAll(".dot").attr("r", 3);}
var colour = function(d) {
switch (d.venue) { case "3": return "rgba(8,81,156,1) "; break; case "2": return "rgba(239,59,44,1)"; break; case "1": return "rgba(149,156,161,1)"; break; }};
var toggleColor = (function(){ var currentColor = "gray";
return function(){ currentColor = currentColor == "gray" ? colour : "gray"; d3.selectAll(".dot").style("fill", currentColor); } })();
var radii = function(d) { return (d.venue)*2.5; };
var toggleSize = (function(){ var currentSize = 3;
return function(){ currentSize = currentSize == 3 ? radii : 3; d3.selectAll(".dot").attr("r", currentSize); } })();
var colour2 = function(d) {
switch (d.colourz) { case "3": return "rgba(8,81,156,1) "; break; case "2": return "rgba(239,59,44,1)"; break; case "1": return "rgba(149,156,161,1)"; break; }};
var toggleColor2 = (function(){ var currentColor2 = "gray";
return function(){ currentColor2 = currentColor2 == colour2 ? colour : colour2; d3.selectAll(".dot").style("fill", currentColor2); } })(); var radii2 = function(d) { return (d.colourz)*2.5; };
var toggleSize2 = (function(){ var currentSize2 = 3;
return function(){ currentSize2 = currentSize2 == radii2 ? radii : radii2; d3.selectAll(".dot").attr("r", currentSize2); } })();
/*.attr("class", function(d,i) { var badge = "f0";
if(typeof cup[d.properties.id-1] === "undefined"){ badge = "f0"; } else { badge = "f" + cup[d.properties.id-1].colour; } return "dot" + d.properties.id + " " + badge; })
.attr("class", function (d) { var colorz = "dot"; if ( d.colourz === 1 ) { colorz = dot; }else{ colorz = "dot" + "1"*/
x.domain(d3.extent(data, function(d) { return d.date; })) y.domain(d3.extent(data, function(d) { return d.time; })).nice();
svg.append("g") .attr("class", "x axis") .attr("transform", "translate(0," + height + ")") .call(xAxis) .append("text") .attr("class", "label") .attr("x", width) .attr("y", -6) .style("text-anchor", "end"); //.text("Date");
svg.append("g") .attr("class", "y axis") .call(yAxis) .append("text") .attr("class", "label") .attr("transform", "rotate(-90)") .attr("y", 6) .attr("dy", ".71em") .style("text-anchor", "end") .text("seconds over 2hrs")
svg.selectAll(".dot") .data(data) .enter().append("circle") .attr("class", "dot") //.attr("class", function(d) { return (d.clasi);} .attr("r", 3) .attr("cx", function(d) { return x(d.date); }) .attr("cy", function(d) { return y(d.time); }) .style("fill", "gray" ) .style("opacity", 0.7) .on("mouseover", mouseover) .on("mouseout", mouseout); //.on("click", function() {d3.selectAll(".dot").style("fill", colour);});
/*var legend = svg.selectAll(".legend") .data(color.domain()) .enter().append("g") .attr("class", "legend") .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; });
legend.append("rect") .attr("x", width +45) .attr("width", 18) .attr("height", 18) .style("fill", color);
legend.append("text") .attr("x", width +35 ) .attr("y", 9) .attr("dy", ".35em") .style("text-anchor", "end") .text(function(d) { return d; });*/
function mouseover(d) { //console.log(d); // show tooltip fade in tooltip.transition() .duration(500) .style("opacity", 0) .style("stroke-width", 9); tooltip.transition() .duration(200) .style("opacity", .9) .style("stroke-width", 3); tooltip.html("
" + "Name: " + "" + d.name + "
" + "Time: " + "" + d.Result + "
" +"Date: " + "" + d.Date + "
" +"All-time rank: "+ ""+ d.rank + "
" + "Placing: "+ ""+ d.place + "
" + "Venue: " + "" + d.Venue + "
" + "Age at time: " + "" + d.age + "
" + "Nationality: " + "" + d.Country + "
");
}
function mouseout(p) { tooltip.transition().duration(200).style("opacity", .9); tooltip.transition().duration(500).style("opacity", 0); } svg.append("text") .attr("x", 90) .attr("y", 34) .attr("class", "legend") .style("fill", "#069ddc") .style ("font-family", "open sans") .style ("font-size", "25px") .text("The fastest 2,500 women's marathons of all time");
svg.append("text") .attr("x", 40) .attr("y",72) .attr("class", "legend") .style("fill", "rgba(239,59,44,1)") .style ("font-family", "open sans") .style ("font-size", "14px") .on("click", function(d) { toggleColor(d) toggleSize(d);}) .text("Click here to show London results"); svg.append("text") .attr("x", 40) .attr("y", 100) .attr("class", "legend") .style("fill", "rgba(8,81,156,1) ") .style ("font-family", "open sans") .style ("font-size", "14px") .on("click", function(d) { toggleColor2(d) toggleSize2(d);}) .text("Then click here to show Paula Radcliffe's best performances"); svg.append("text") .attr("x", width - 50) .attr("y", 60) .attr("class", "legend") .style("fill", "Black") .style ("font-family", "open sans") .style ("font-size", "20px") .on("click", function(d) { colourReset(d) sizeReset(d);}) .text("Reset"); }) ;
All data from all-timeathletics.com, updated 19 April 2015.
The three fastest times in marathon history all belong to the British Olympian and are more than three minutes ahead of the next nearest time – Kenya’s Mary Keitany is next with a time of 2:18:37.
Only four other women have ever run under two hours and 20 minutes in London, and it has been done just 20 times in any marathon in the 12 years since Radcliffe sailed past the mark by almost five minutes.
In 2003, at age 29, Radcliffe set the marathon world record, a stellar year in which she also won gold in the Commonwealth Games 5,000m, European Championships 10,000m and the World Cross Country Championships.
So dominant are her best times that her personal best is around 3.5 minutes faster than that of Rita Jeptoo, the best marathon runner in the world last year, who tested positive last December for the blood-boosting drug erythropoietin (EPO).
EPO was made famous by its abuse in cycling and has been found to boost normal cyclists’ stamina (time to exhaustion) by up to 54 per cent in lab trials, although effects on elite athletes are likely to be less dramatic.

For the time being, Radcliffe’s record looks pretty safe. Yet she herself believes the record won’t last forever. She told British Athletics: “It will be beaten at some point, that’s the nature of the sport. I don’t believe I have any more talent than anyone else.”
Yet even if and when it is, Radcliffe’s phenomenal achievements are guaranteed to loom large over the London Marathon for a long time to come.