Reputation: 662
I am looking to be able to track how many a days a given unique visitor comes to the site. Ideally I am looking for a report that says:
1 day a week: 562
2 days a week 380
3 days a week 42
etc...
Where if a unique visitor comes monday, wednesday and friday they would be added into the 3 days a week bucket regardless of how many times the given unique visitor visited the site during that day.
Is there any way to do this in Google Analytics? If not in GA is there off the shelf analytics tool/service that will do this easily?
Upvotes: 1
Views: 287
Reputation: 662
Here is how I ended up solving this:
This will allow us to compare # of people who visited 3 or more times all the way up to 7 or more times per week. You only have 50k unique custom events, but this should eat through them very slowly and allow you to do the broad tracking
Upvotes: 0
Reputation: 32517
I don't think you can do that out-of-the-box inside GA but what you can do is use a custom variable with a unique id for the user so that it can be listed as a dimension. Then you can see like
user visits
userA 3
userB 5
userC 2
userD 1 etc...
and then you can export to excel or somethin' and then do a count on grouped-by-visits rows.
Upvotes: 1