是否可以在移动应用程序中使用 Firebase Analytics 查找特定用户的年龄和性别?
Is it possible to find age and gender of a specific user using Firebase Analytics in mobile app?
-
google-analytics
-
firebase
-
google-analytics-firebase
-
google-analytics-filters
-
google-analytics-userid
我已将 Firebase Analytics 集成到我的移动应用程序中(Android 和 iOS)。每个移动用户都有一个唯一的 ID,用于设置 Firebase SDK。
是否可以找出特定用户的年龄段和性别?我一直在 Google Analytics 控制台上查看用户资源管理器,但找不到连接用户 ID 和 age/gender 的方法。
是否可以找出特定用户的年龄段和性别?
否。根据 https://support.google.com/analytics/answer/2799357?hl=en#thresholds
Thresholds are applied to prevent anyone viewing a report from
inferring the demographics or interests of individual users. When a
report contains Age, Gender, or Interest Category (as a primary or
secondary dimension, or as part of an applied segment), a threshold
may be applied and some data may be withheld from the report
因此 当您尝试将用户 ID 与人口统计数据相结合时,报告中的每一行仅包含 1 个用户的信息,低于阈值,因此人口统计数据被隐藏 .
如果您需要 gender/age 等的用户级精度...使用 Firebase/GA,两种主要方法是:
- 你问用户
- 您使用外部数据丰富工具
您在用户属性/自定义维度中针对每个用户 ID 保存该信息,以便您可以随意检索它。
google-analytics
firebase
google-analytics-firebase
google-analytics-filters
google-analytics-userid
我已将 Firebase Analytics 集成到我的移动应用程序中(Android 和 iOS)。每个移动用户都有一个唯一的 ID,用于设置 Firebase SDK。 是否可以找出特定用户的年龄段和性别?我一直在 Google Analytics 控制台上查看用户资源管理器,但找不到连接用户 ID 和 age/gender 的方法。
是否可以找出特定用户的年龄段和性别?
否。根据 https://support.google.com/analytics/answer/2799357?hl=en#thresholds
Thresholds are applied to prevent anyone viewing a report from inferring the demographics or interests of individual users. When a report contains Age, Gender, or Interest Category (as a primary or secondary dimension, or as part of an applied segment), a threshold may be applied and some data may be withheld from the report
因此 当您尝试将用户 ID 与人口统计数据相结合时,报告中的每一行仅包含 1 个用户的信息,低于阈值,因此人口统计数据被隐藏 .
如果您需要 gender/age 等的用户级精度...使用 Firebase/GA,两种主要方法是:
- 你问用户
- 您使用外部数据丰富工具
您在用户属性/自定义维度中针对每个用户 ID 保存该信息,以便您可以随意检索它。