简体   繁体   English

Google Analytics入口何时不是访问?

[英]When is a Google Analytics Entrance not a Visit?

In this question, the accepted answer says that a visit is not always an entrance. 在这个问题中,接受的答案说访问并不总是一个入口。 I checked and it's true for my site, though the difference is small (0.4% difference). 我查了一下,我的网站也是如此,虽然差异很小(差异为0.4%)。

difference between ga:entranceBounceRate and ga:visitBounceRate ga:entranceBounceRate和ga:visitBounceRate之间的差异

When is a visit not an entrance? 什么时候访问不是入口?

Visits are incremented with the first hit of a session, whereas Entrances are incremented with the first Pageview hit of a session. 访问次数在会话的第一次点击时递增,而“入口”在会话的第一次Pageview点击时递增。 So if the first hit of the visit is not a Pageview then you might see a difference between these two calculations. 因此,如果访问的第一次访问不是Pageview,那么您可能会看到这两个计算之间存在差异。

ga:entranceBounceRate = (ga:bounces / ga:entrances) * 100
ga:visitBounceRate = (ga:bounces / ga:visits) * 100

For example: 例如:

  • Visitor A lands on your site from a search and the first hit sent to Google Analytics is a pageview. 访问者A通过搜索登陆您的网站,发送到Google Analytics的第一个搜索结果是综合浏览量。 Then they leave the site by closing the tab/browser. 然后他们通过关闭标签/浏览器离开网站。 This would count as 1 visit and 1 entrance. 这将被视为1次访问和1次入口。
  • Visitor B lands on your site from a search and the first hit sent to Google Analytics is a pageview. 访问者B通过搜索登陆您的网站,发送到Google Analytics的第一个搜索结果是综合浏览量。 They also interact with some element on the page that sends an additional hit to Google Analytics in the form of an event (eg they click the play button). 它们还与页面上的某些元素进行交互,这些元素以事件的形式向Google Analytics发送额外的匹配 (例如,他们点击播放按钮)。 This would count as 1 visit and 1 entrance because the first hit of the visit was a pageview. 这将被视为1次访问和1次入口,因为访问的第一次访问是网页浏览。 Now just say the user keeps this page open in a browser tab but doesn't do anything with the page for 1 hour, then they come back and interact with another element on the page (eg they hit stop button) and an event hit is sent to Google Analytics. 现在只要说用户在浏览器选项卡中打开此页面但是对页面做了1小时没有做任何事情,然后他们回来并与页面上的另一个元素交互(例如他们点击停止按钮)并且事件命中是已发送至Google Analytics。 Since 1 hour went by without any hits being sent to Google Analytics, this will be considered a new visit. 由于1小时没有任何匹配发送到Google Analytics,因此这将被视为新访问。 And in this case the first hit of the visit was an event. 在这种情况下,访问的第一个打击是一个事件。 So you would end up in this case with 1 visit, 0 entrances. 所以你最终会遇到1次访问,0次入口。

So to sum the example up you'd have 3 visits and 2 entrances which would yield different results for those two calculations. 因此,为了总结这个例子,你将有3次访问和2次入口,这将为这两个计算产生不同的结果。

这意味着访问和入口之间的区别在于,如果用户通过搜索结果访问网站并通过关闭标签离开网站,那么它将被计为1次访问,1次入口,如果他们保持打开一段时间,而不做任何活动然后它将被计为1次访问,0次入口

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM