Effective Connection Type
Defined by the Network Information API and available in Chrome M62+:
“Provides the effective connection type (“slow-2g”, “2g”, “3g”, “4g”, or “offline”) as determined by round-trip and bandwidth values based on real user measurement observations.”
Row | ect | density | |
1 | 4G | 0.905 | |
2 | 3G | 0.2945 | |
#standardSQL
SELECT
effective_connection_type.name AS ect,
ROUND(SUM(bin.density), 4) AS density
FROM
`chrome-ux-report.all.201711`,
UNNEST(first_contentful_paint.histogram.bin)
--
You received this message because you are subscribed to the Google Groups "chrome-ux-report" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chrome-ux-report+unsubscribe@chromium.org.
To post to this group, send email to chrome-u...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chrome-ux-report/cefdcbeb-cb78-402b-b7dd-96efdee89f4b%40chromium.org.
To unsubscribe from this group and stop receiving emails from it, send an email to chrome-ux-repo...@chromium.org.
To post to this group, send email to chrome-u...@chromium.org.