Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Enable Demographics and Interests reports in Universal Analytics

Tags:

I want to enable demographics and interests reports with the Universal Analytics tracking code.

The generated tracking code for my site looks like this:

<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-999999999-9', 'whatever.com');
  ga('send', 'pageview');

</script>

Under Display Advertiser Features there is a option saying:

Demographics and Interest Reports make Age, Gender, and Interest data available so you can better understand who your visitors are. To see this data, you need to make a small change to your tracking code. Learn more about how to make these tracking code changes.

It links to: https://support.google.com/analytics/answer/2444872?hl=en&utm_id=ad

Which basically tells me to replace:

ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') 
   + '.google-analytics.com/ga.js';

With:

ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://')
  + 'stats.g.doubleclick.net/dc.js';

But this seems to target a different version of Analytics (Classic Analytics tracking code, and I am using the new Universal Analytics)...

Should I just replace:

})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

With something? (E.g.)

})(window,document,'script','//stats.g.doubleclick.net/analytics.js','dc');

Also, do I really need to enable Advertiser Features in order to track visitors age and gender? I have currently no intention in using AdSense.

like image 635
Anthony Accioly Avatar asked Nov 14 '13 02:11

Anthony Accioly


People also ask

Why is there no data for demographics on Google Analytics?

It's worth noting that Google Analytics Demographics and Interests reports are not able to provide data on all of your visitors. This can be for a number of reasons: Data is collected by cookies, which are often blocked (by extensions like Ad Blocker), or deleted by users when they clear cookies.

What are the demographics report in Google Analytics?

Analyze users by age, gender, and interest categories. Demographics and interests data provides information about the age and gender of your users, along with the interests they express through their online travel and purchasing activities.


2 Answers

As I know , the feature is not available for Universal Analytics until phase 3.

This link has more information about Universal Mode: https://developers.google.com/analytics/devguides/collection/upgrade/

Refer the article below for more info about do it in Classic Mode. http://online-behavior.com/analytics/demographics


The upgrade page has the following content under the section "Important Considerations" (emphasis hjpotter92):

Data integrations related to the dc.js JavaScript library aren’t supported, but are coming soon.

The dc.js JavaScript library isn't supported in Universal Analytics, but will be in the coming year. If you rely on dc.js related features, such as Remarketing, Google Display Network Impression Reporting, DoubleClick Campaign Manager Integration, or Google Analytics Demographics and Interests Reports, do not upgrade to Universal Analytics yet. Wait until you see an announcement about dc.js in Universal Analytics, and upgrade then.

like image 50
Ishara Shehan Avatar answered Oct 20 '22 19:10

Ishara Shehan


Using Demographics and Interests reports in analytics.js

In order to enable Demographics and Interests reports in Universal Analytics, you need to alter your tracking code slightly to include a required directive:

ga('create', 'UA-XXXXXX-XX', 'example.com');

ga('require', 'displayfeatures'); enables Demographics and Interests reports

ga('send', 'pageview');

But please note that you must also update your privacy policy if you add this code! (emphasis mine)

If you choose to support Display Advertising, you need to make a simple, one-line change to your Google Analytics tracking code. Once you have made this change, Google Analytics collects the information it normally does, as well as the DoubleClick cookie when that cookie is present. For more information about this cookie, visit the Google Advertising Privacy FAQ. When you make this update to your tracking code, you also need to update your privacy policy.

This modification does not impact any customizations you have previously made to your code.


Use ga.js and analytics.js simultaneously

You can use both analytics.js and ga.js simultaneously without negatively impacting your Analytics.

The analytics.js snippet is part of Universal Analytics, which is currently in public beta. New users should use analytics.js. Existing ga.js users should create a new web property for analytics.js and dual tag their site. It is perfectly safe to include both ga.js and analytics.js snippets on the same page.

like image 30
Marc Dingena Avatar answered Oct 20 '22 21:10

Marc Dingena