gpt4 book ai didi

google-analytics - 如何在 Bigquery 中获取唯一页面浏览量的 Google Analytics 定义

转载 作者:行者123 更新时间:2023-12-03 04:07:22 25 4
gpt4 key购买 nike

https://support.google.com/analytics/answer/1257084?hl=en-GB#pageviews_vs_unique_views

我正在尝试计算 Google Analytics 界面上每天的唯一页面浏览量总和如何使用 bigquery 获得等效值?

最佳答案

有两种使用方法:

1) 一种是如原始链接文档所述,结合完整的访问者用户 ID 及其不同的 session ID:visitId,并对它们进行计数。

SELECT
EXACT_COUNT_DISTINCT(combinedVisitorId)
FROM (
SELECT
CONCAT(fullVisitorId,string(VisitId)) AS combinedVisitorId
FROM
[google.com:analytics-bigquery:LondonCycleHelmet.ga_sessions_20130910]
WHERE
hits.type='PAGE' )

2) 另一个只是计算不同的 fullVisitorIds

SELECT
EXACT_COUNT_DISTINCT(fullVisitorId)
FROM
[google.com:analytics-bigquery:LondonCycleHelmet.ga_sessions_20130910]
WHERE
hits.type='PAGE'

如果有人想在示例公共(public)数据集上尝试这个,有 tutorial how to add the sample dataset .

关于google-analytics - 如何在 Bigquery 中获取唯一页面浏览量的 Google Analytics 定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31041127/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com