Learn business growth with Google Analytics 4 Forums Google Analytics 4 Understanding and Calculating GA4 Engagement Rate in BigQuery

  • Understanding and Calculating GA4 Engagement Rate in BigQuery

    Posted by George on 27 June 2023 at 4:19 am

    Can someone help me calculate ‘engagement rate’ on BigQuery with the same definition as Google Analytics 4, which should apply to all platforms (iOS / Android / Web)? I’m a bit lost with several engagement-related parameters and their values. The options I tried don’t give the same results as in the GA4 UI. So, what is the context of each parameter, when should I use which parameter, and how can I match the ‘engagement rate’ in BigQuery to that shown in the GA4 UI? Any ideas?

    Sophia replied 12 months ago 3 Members · 2 Replies
  • 2 Replies
  • Charlotte

    Member
    8 July 2023 at 2:33 am

    What you’re doing here is calculating the engagement rate as the ratio of engaged sessions to total sessions. For those unfamiliar with SQL language:

    You’re using the safe_divide function to divide the first argument by the second argument. This function will not cause an error if you try to divide by zero; instead, it will return NULL.

    The first argument is the count of distinct sessions where ‘session_engaged’ = ‘1’. The ‘case when’ statement is used to decide when a session is considered engaged. According to GA4, a session is considered engaged when it lasts at least 10 seconds or had a conversion event or 2 screen or page views.

    For the ‘distinct’ condition, you’re using a combination of ‘user_pseudo_id’ and ‘ga_session_id’ to recognize distinct sessions. ‘user_pseudo_id’ is a unique identifier for a user and ‘ga_session_id’ is a unique identifier for a session. Therefore, the combination of these two keys will give you distinct sessions.

    The second argument is the total count of distinct sessions. It’s calculated in the same way as above but it includes all sessions, not just engaged ones.

    Then you’re aliasing the output of the division as ‘engagement_rate’. This will be the name of the column in the output of your query.

    In summary, the ‘engagement rate’ is calculated as ‘the count of distinct engaged sessions divided by the count of all distinct sessions’.

    It’s worth mentioning that this is likely a simplification of how engagement rate is calculated in GA4. Google may be using additional or different criteria to determine whether a session is considered engaged.

    I hope this helps! Let me know if you have any other questions!

  • Sophia

    Member
    8 July 2023 at 1:36 pm

    In Google Analytics 4, ‘Engagement Rate’ is calculated as the total number of ‘Engagement Events’ divided by the total number of ‘Users’, (Engagement Events / Users)*100. In BigQuery, the calculation involves a similar approach. First, you will need to count the engagement events from the ‘events’ table, and then divide it by the total number of users from the ‘user_pseudo_id’ field. The ‘events’ table contains the details of each interaction or engagement event made by users, like first_open, app_remove, etc. The ‘user_pseudo_id’ is an identifier for each user that gets mapped to it across devices and platforms. You can use these to match your BigQuery analytics with GA4 UI for calculating the engagement rate. However, it’s pertinent to remember that applying filters and segments can lead to the discrepancy in the data points from the UI and BQ. Try to ensure that both data sets are identical before comparison.

Log in to reply.