Reputation: 41
I'm pulling data out of Google Analytics Premium and trying to report on the sequence of pages that a specific user looked at within one session.
The query I used is:
SELECT fullvisitorID,visitid,visitnumber,hits.hitnumber,hits.type FROM
(TABLE_DATE_RANGE([mydata.ga_sessions_],
TIMESTAMP('2014-04-25'),timestamp('2014-05-26')
)) where visitid=123456789;
The results show me the following hit types:
Hitnumber: 1 Hit type: page
Hitnumber: 3 hit type: event
Hitnumber: 4 Hit type: page
Hitnumber: 5 Hit type: event
I found it odd that hit number 2 was missing from this result set. I saw other visits where the hit counter jumped from 2 to 16 with nothing in between. I'm not filtering on any hit types so I couldn't figure out why I wouldn't see everything in sequence. The total hit count for the above results is 4 which is consistent with the results, but it would be interesting to know why hitnumber 2 is skipped.
Any thoughts/ideas would be appreciated.
Upvotes: 4
Views: 2621
Reputation: 280
After looking at our own Google Analytics Raw data in Big Query, I Have noticed the following things:
Would be very interesting to know what some of the Big Query Developers have to say about it.
Upvotes: 3