PageSpeed is a performance analysis tool that grades websites on a scale of 1-100. Higher scores are better.
I’ve always wondered how Pagespeed scores that I see when I run tests on PageSpeed Insights compare to other sites out there.
Looks like the average score hovers in the upper- or mid-seventies, according to the current Trend chart from httparchive.org:
I was curious what the quantiles might be so I modded a query that Ilya put together here and came up with this:
SELECT
NTH(10, quantiles(pageSpeed,100)) tenth,
NTH(20, quantiles(pageSpeed,100)) twentieth,
NTH(30, quantiles(pageSpeed,100)) thirtieth,
NTH(40, quantiles(pageSpeed,100)) fortieth,
NTH(50, quantiles(pageSpeed,100)) fiftieth,
NTH(60, quantiles(pageSpeed,100)) sixtieth,
NTH(70, quantiles(pageSpeed,100)) seventieth,
NTH(80, quantiles(pageSpeed,100)) eightieth,
NTH(90, quantiles(pageSpeed,100)) ninetieth
FROM [httparchive:runs.latest_pages]
Our results: