问题描述
在这个问题上,接受的答案是说访问并不总是一个入口。我查了一下,对我的网站来说这是真的,虽然差别很小(0.4%的差异)。
何时访问不是入口? / p>
访问会随着会话的第一次点击而增加,而入口会随着会话的第一次浏览量增加而增加。因此,如果访问的第一次访问不是Pageview,那么您可能会看到这两个计算之间的差异。
ga:entranceBounceRate =(ga:bounces / ga:entrances)* 100
ga:visitBounceRate =(ga:bounces / ga:visits)* 100
例如:
因此,为了总结这个例子,你将有3次访问和2次入口,这两次计算会产生不同的结果。
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).
difference between ga:entranceBounceRate and 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. So if the first hit of the visit is not a Pageview then you might see a difference between these two calculations.
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. Then they leave the site by closing the tab/browser. This would count as 1 visit and 1 entrance.
- Visitor B lands on your site from a search and the first hit sent to Google Analytics is a pageview. They also interact with some element on the page that sends an additional hit to Google Analytics in the form of an event (e.g. they click the play button). This would count as 1 visit and 1 entrance because the first hit of the visit was a pageview. 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 (e.g. they hit stop button) and an event hit is sent to Google Analytics. Since 1 hour went by without any hits being sent to Google Analytics, this will be considered a new visit. 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.
So to sum the example up you'd have 3 visits and 2 entrances which would yield different results for those two calculations.
这篇关于何时Google Analytics入口不是访问?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!