Skip to content
Monday 24 August 2026London --:--Frankfurt --:--Zurich --:--
NewslettersSearchEN · DE · FR
MorningWire

European business, markets and politics

FTSE 100
10,818.26
+0.02%
DAX
26,062.31
-0.28%
CAC 40
8,466.33
-0.21%
STOXX 50
6,448.78
-0.21%
  • Europe
  • Markets
  • Business
  • Economy
  • Regulation
  • Politics
  • Opinion
More
GermanyFranceEU InstitutionsCompetitionPublic AffairsBankingTechnologyEnergy
  • Germany
  • France
  • Europe
  • Markets
  • Business
  • Economy
  • Regulation
  • Politics
  • Opinion
  • DE
Sunday 26 April 2015 4:30 am

As Paula Radcliffe bids goodbye to the London Marathon, here’s why her world records will stand the test of time

By: Billy Ehrenberg

Add as a preferred source on Google

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://morningwire.eu/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.

Another measure of her dominance is the margin of victory: her best time is 2.36 per cent better than Keitany's, the second-placed woman. On the men’s all-time list, the fastest man, Dennis Kimetto, has a time 0.06 per cent better than his nearest rival. The man in tenth, Haile Gebrselassie, has a time 0.8 per cent slower than Kimetto’s. You have to go down to 105th place before Kimetto has a gap greater than that between Radcliffe and the second fastest woman.
 
 
Radcliffe doesn’t appear on our graph since finishing third in Berlin in 2011, having been dogged by a foot injury that has seen her miss out on the last two events in London.

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.

 

Share this article

  • Facebook
  • X
  • LinkedIn
  • WhatsApp
  • Email

Similarly tagged content:

Sections

  • News

Categories

  • Business

Trending Articles

  • Can debt-ridden Morrisons become a Big Four supermarket again?

  • Ratcliffe’s Ineos saves Runcorn plant

  • Amazon says it buys books in bulk to ‘improve products’

  • House prices in wealthy London boroughs fall by up to £300,000

  • HMRC mansion tax inspectors to target homes for property valuations

More from Morning Wire

  • Josh Kerr took the mile record. But how much further can we go?

    Opinion
    Josh Kerr celebrates new mile record 3:42.66 on Omega scoreboard, Union Jack visible, track stadium background.
  • The European fintech American dream is being called into question

    Fintech
    Wise logo with downward trending stock chart, highlighting fintechs share decline amid Belgium fraud investigation
  • Elite Cloud Customers to Outnumber On-Premises for the First Time in Company History as Law Firms Build for AI

    Business Wire
  • Top AmLaw Firm Hogan Lovells Cadwalader Unifies Global Financial Operations with Elite’s 3E in Six Months

    Business Wire
  • Hult International Business School Secures Five Year Unconditional AMBA Reaccreditation, Retaining Elite Triple Crown Status

    Business Wire
  • IT consultant ordered to pay £50,000 after being accused of stealing Soho House members’ personal details

    Legal
    Soho House has continued to attract new members to its clubs.
  • Commonwealth Gold Medallists Return to the Court That Helped Inspire London

    Partner
    Team England athletes and dignitaries celebrate the Kings Baton Relay for Glasgow 2026 at a London sports festival.
  • Exclusive: Fulham launch £900 a head Michelin-guide recognised hospitality at Craven Cottage

    Sport Business
    Aerial view of Fulham FCs Craven Cottage stadium redevelopment, Riverside Stand, and Thames riverfront in London.
MorningWire

Independent European business, markets and political news for decision-makers.

Morning Briefing

Europe

  • Germany
  • France
  • EU Institutions
  • Europe

Business

  • Markets
  • Business
  • Economy
  • Regulation
  • Competition
  • Public Affairs

Editorial

  • Opinion
  • Editorial Policy
  • Corrections
  • Contact

Company

  • About Morning Wire
  • Privacy Policy
  • Terms of Use
  • Cookie Policy
© 2026 Morning Wire Ltd · Published by Morning Wire Media, Bahnhofstrasse 65, 8001 Zürich, Switzerland
Privacy · Terms · Cookies · Facebook