Tracking two different user types with Google Analytics?

孤街浪徒 提交于 2019-12-20 10:25:21

问题


We've got a site with two types of users:

  • Guests
  • Registered users

What we are looking for is a method to track both types of users within just one Google Analytics profile. We believe a registered user stays more in the site and has a higher page view count that a guest.

Could this be possible within just one profile?
Could there be a way to show custom reports in the profile page to show both user's average time and guests average time?

I know Analytics is such a powerful application, but I'm no guru and I couldn't find anything on Google.

Thanks.

Bounty Update

I know it has to do with filters. In your answer please share code and step-by-step instructions.


回答1:


You can use custom variables in GA to track different types of users. Take a look at this example in the GA docs for more information. http://code.google.com/apis/analytics/docs/tracking/gaTrackingCustomVariables.html#examples

This is how I would do it:

  • When the user session starts, if the user is not a registered user, set a custom variable like so:
   pageTracker._setCustomVar(
      1,             // This custom var is set to slot #1
      "User Type",   // The name of the custom varaible
      "Guest",      // Sets the value of "User Type" to "Guest" for non registered users
       2             // Sets the scope to session-level  
   );
   pageTracker._trackPageview();
  • After the user logs in, use the following code.
   pageTracker._setCustomVar(
      1,             
      "User Type",   
      "Registered User",
       2              
   );
   pageTracker._trackPageview();

Now you should be able to see User Type as a custom variable in your reports.

Hope this helps.




回答2:


what you will need to do is amend the google script at the bottom of your page when it loads to show the state of this custom value.

take a look at for more info. http://code.google.com/apis/analytics/docs/tracking/gaTrackingCustomVariables.html

what i think you atually want to do is more custom visitor segmentation. http://code.google.com/apis/analytics/docs/tracking/gaTrackingVisitorSegments.html



来源:https://stackoverflow.com/questions/2250132/tracking-two-different-user-types-with-google-analytics

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!