Sessions in Google Analytics vs BigQuery - discrepancies -
i detecting discrepancies between total number of sessions in data on google analytics , bigquery. calculating in bq, use following:
select date, exact_count_distinct(concat(fullvisitorid, string(visitid))) sessions [mydata]
the results obtained query these:
query results row date sessions
1 20150601 1269258
2 20150602 1269299
3 20150603 1131770
in google analytics, numbers of sessions per day are:
day index sessions 6/1/2015 1113088
6/2/2015 1112203
6/2/2015 993178
is there reason difference?
Comments
Post a Comment