Event total analysis
How will the report look like in analysis workspace for any specific link click analysis and what are the metrics and dimensions we use to create report?
How will the report look like in analysis workspace for any specific link click analysis and what are the metrics and dimensions we use to create report?
Ok, so "event3" is basically a counter. Every time someone clicks on your button event3 will count for "1".
You can use this in many ways...
First, as you mentioned, you can use Day as your breakdown... so in a panel set to last 30 full days, this will show how many clicks occurred on your button per day, as well as the total clicks for the reporting period. This is a good basic report because it will show you how active that button is.
Page is a bit trickier, if you are only using s.pageName, you won't have any data to correlate with event3 since pageName (Page in Workspace) is removed on actions (s.tl calls). You will need to track your Page Name in a custom eVar... I have a Hit level eVar set up, and set it to use Dynamic Variables
s.eVarX = "D=pageName";
This makes sure that my eVar picks up a duplicate value to what I set in my pageName variable.. the beauty of this is that the duplication happens before the standard PageName is removed... and if your page names are long, they will be truncated to 100 characters, whereas the eVar will hold up to 255 characters.
Now I have a replication eVar that I call "Page Name" available on all page views and actions.
Now, let's look at your event3 itself, maybe you want to know the average "Login Button Click per Visit" or "Login Button Click per Visitor", you can make some simple calculated metrics like so:
event3
÷
Visits
OR
event3
÷
Unique Visitors
There is a caveat to the above, these will take ALL Visits or ALL Visitors (even those that never use the login button) and if a large percentage of your users don't login, this could make these rates very small, so you might want to get a little fancier and create calculated metrics for "Login Button Click per Visit (that use the login button)" or "Login Button Click per Visitor (that use the login button)"
You would create a few segments first:
(Visits with Login Button Clicks)
Visit
event3 exists
and
(Visitors with Login Button Clicks)
Visitor
event3 exists
Now, you would do similar calculated metrics to the above, but add these segments in so that only active "use" Visits or Visitors are used in the rate:
event3
÷
Visits with Login Button Clicks [
Visits
]
OR
event3
÷
Visitors with Login Button Clicks [
Unique Visitors
]
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.