Google Analytics Metrics are inflated when extracting hit level data using BigQuery

前端 未结 4 1504
迷失自我
迷失自我 2020-12-22 11:52

I\'m trying to display the source property name within the Google Analytics roll up property I have linked to bigquery. Issue is, is that when I try the below some of the me

4条回答
  •  情歌与酒
    2020-12-22 12:37

    I think the reason why the calculated bounce rate is much higher in the query from William Fuks is the following

    WHEN (h.isentrance = TRUE AND h.isexit = TRUE) THEN 1 END) bounces

    It seems that isEntrance and isExit only happens on PAGE hits and so does not account for events. Hence the over count of bounces is due to single page views that might have had one or more interaction events happen on the page.

提交回复
热议问题