(Gtag.js) Google Analytics 显示自定义维度的 15K 用户的跳出率为 0.0,这是不可能的,是代码中的问题吗?

(Gtag.js) Google Analytics shows bounce rate 0.0 on 15K users for a custom dimension, which is impossible, is the problem in the code?

我确实创建了自定义维度 1,abTestDecision=1

我想要某些网站会话,使用此代码进行设置:

<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-xxxxxxx-x', {
  'custom_map': {'dimension1': 'abTestDesign'}
  });

  gtag('event', 'abTestDesign_dimension', {'abTestDesign': 1});
</script>

但分析显示此维度 abTestDesign=1 的跳出率为 0.0,这是不可能的(因为此页面的正常跳出率为 ~70%)。

问题出在代码的某处吗?

通常当您在页面上有 重复的分析代码 或者如果您发送 双重互动 (页面浏览和事件)时,通常会发生这种情况一旦用户登陆页面。

你的情况是第二种,你在登陆页面时同时发送综合浏览量和交互事件,因此跳出率(定义为只有一次交互的会话)不可避免地为 0。

试试这样发送事件:

gtag('event', 'abTestDesign_dimension', {'abTestDesign': 1, 'non_interaction': true});