Created
June 17, 2019 17:10
-
-
Save rviscomi/821daa5f088094c9046e0d8d171fca42 to your computer and use it in GitHub Desktop.
Query for cumulative layout shifts in the Chrome UX Report
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
form_factor.name AS form_factor, | |
cls.start, | |
ROUND(SUM(cls.density), 4) AS density | |
FROM | |
`chrome-ux-report.all.201905`, | |
UNNEST(experimental.cumulative_layout_shift.histogram.bin) AS cls | |
WHERE | |
origin = 'https://www.nytimes.com' | |
GROUP BY | |
form_factor, | |
start | |
ORDER BY | |
form_factor, | |
start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment