https://support.google.com/analytics/answer/1257084?hl=en-GB#pageviews_vs_unique_views
I'm trying to calculate the sum of unique page views per day which Google analytics has on its interface How do I get the equivalent using bigquery?
https://support.google.com/analytics/answer/1257084?hl=en-GB#pageviews_vs_unique_views
I'm trying to calculate the sum of unique page views per day which Google analytics has on its interface How do I get the equivalent using bigquery?
The other queries didn't match the Unique Pageviews metric in my Google Analytics account, but the following did:
For uniquePageViews you better want to use something like this:
There are two ways how this is used:
1) One is as the original linked documentation says, to combine full visitor user id, and their different session id: visitId, and count those.
2) The other is just counting distinct fullVisitorIds
If someone wants to try out this on a sample public dataset there is a tutorial how to add the sample dataset.