googleAnalyticsR
provides convenient access to the
Google Analytics API, helping analysts and developers programatically
access Google Analytics data, automate Google Analytics related
workflows and benefit from working with data in larger volumes and finer
granularity. The FAQ below provides some context around the library
especially for those new to R, to the Google Analytics API or both.
Connecting and interacting with an API involves a number of steps including authentication, passing data and instructions back and forth between server and client following protocol specifics etc. This can add a level of complexity to the interaction with a web API.
googleAnalyticsR
intermediates between the user and
the API, abstracting out the low level details of the interactions with
the API. This involves providing a friendly method to authenticate and
query the API and convert API data in a convenient format (typically an
R data frame) that’s easy to work with directly.
Additionally the library provides many advanced functionalities which are developed on top of the Google Analytics API, for example the possibility to overcome the commonly experienced issue of sampling. Check out the homepage for a detailed list of these functionalities.
Having a very basic knowledge of R is sufficient for anyone who wants to start using this library to automate access to Google Analytics data. Dartistics.com offers a very accessible R guide with special focus on R’s applications for digital analytics.
In this case you might still find it convenient to access the Google Analytics data using the library and then continue working with the obtained dataset in a different programming language.
Familiarity with the basic concepts of SQL will be useful. In many ways the process of querying the Google Analytics API via this library resembles that of querying a database.
The library is actively developed and now covers all key functionalities of the API and even most of the less commonly used ones. Check out the news section to see the progress of the library in time. Practically speaking the vast majority of tasks that one can perform via the Google Analytics UI, it’s possible to do programatically using the API and the library.
As the GA API evolves over time, different versions of it become available. The library includes functions for the two latest versions, v3 and v4. All the new API features will become available only for the v4 API so becoming familiar with the v4 functions could be beneficial in this respect. (There are two basic features not available currently for version 4 which are discussed in the v4 API section)
The “GA API” is essentially is a set of distinct but related APIs such as the ones mentioned above. More information about the distinction here Depending on the nature of the request one API or another is responsible to handle it. For instance: The Management API is associated mainly with the types of actions one would normally perform on the admin section of a Google Analytics account. It can help automate account configuration and provide access to configuration data.
Practically for most users the reporting API is the one that is most commonly used as it allows access to the metrics, dimensions, segments and related data associated with the user navigation through a web property.
A typical basic workflow is to use the library for easy authentication to the Google Analytics API and then use the reporting API to collect -unsampled- data from your Google Analytics account.
More advanced workflows (once the data is retrieved) could involve:
If you wish to contribute code/documentation or if you ’d like to report a bug please read the contributing page on github
You can also ask a question on Stackoverflow using the appropriate tags and there is a good chance someone will answer it for you.
You can as well join an active slack community of users of the library, where you can post questions or suggestions or answer questions of others. See top of homepage for more info.
For feature requests please visit the feature request guide on github