This is a tutorial on how to use R to directly connect to and extract data from Google Analytics using the Google Analytics Reporting API v4. www.ryanpraski.com/google-analytics-r-tutorial/ This is meant to be a simple example and assumes no prior knowledge or experience with R, APIs or programming. By the end of this tutorial you will be able to: Extract pageview data for your top pages directly from Google Analytics Reporting API to R. And create a line graph showing session trended by day using R. 1. Install R 2. Install R Studio 3. Save the R Script 4. install.packages(c("googleAnalyticsR","ggplot2")) 5. Authorize googleAnalyticsR to access your data 6. Find your Google Analytics viewID 7. Set your date range dynamically or statically 8. Run page view query 9. View the page view query data View(df1) 10. Run sessions by date query 11. View the sessions data View(df2) 12. Create a line graph using ggplot2 Google Analytics R Tutorial, Google Analytics R Example, Google AnalyticsR, Google Analytics R Sample, Learn Google Analytics API, Learn Google Analytics R API, Learn R, Beginners Guide