-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreporting.r
61 lines (46 loc) · 2.7 KB
/
reporting.r
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# install.packages("renv")
# renv::init()
# renv::install("googleAnalyticsR")
# renv::snapshot()
renv::restore()
library(googleAnalyticsR) # for working with Google Analytics
library(jsonlite) # for our json files
googleAuthR::gar_set_client("~/projects/gar-reporting/gar-creds.json")
devtools::reload(pkg = devtools::inst("googleAnalyticsR"))
options(googleAuthR.scopes.selected =
"https://www.googleapis.com/auth/analytics")
ga_auth() # authenticate
#?googleAuthR # help with auth over Google
ga_account <- fromJSON("~/projects/gar-reporting/ga-account.json")
ga_tableid <- ga_account$sitename # select the site from our account
# get data only for a specific webpage
dim_filter_pagepath <- filter_clause_ga4(list(dim_filter(dimension = "pagePath", operator = "REGEXP", expressions = "^\\/(foldername)\\/(pagename)\\/$")))
mypage_usage <- google_analytics(ga_tableid,
date_range = c("2019-09-02", "2019-09-08"),
metrics = c("uniquePageviews", "uniqueEvents"),
dimensions = c("pagePath"),
dim_filters = dim_filter_pagepath,
anti_sample = TRUE)
# store dataset locally for later use
make_csv <- write.csv(mypage_usage,
"~/projectname/filename.csv")
# fetch list of segments in GA
ga_segments <- ga_segment_list()
ab_controlgroup <- segment_ga4("control", segment_id = "gaid::xxxxxxxxxxxxxx")
ab_variantgroup <- segment_ga4("variant", segment_id = "gaid::yyyyyyyyyyyyyy")
ab_control <- google_analytics(ga_tableid,
date_range = c("2019-10-21","2019-10-23"),
metrics = c("users","uniqueEvents"),
dimensions = c("dimension14", "eventCategory", "eventAction", "eventLabel"),
segments = ab_controlgroup,
anti_sample = TRUE)
make_csv <- write.csv(ab_control,
"~/projectname/ab_controlgroup.csv")
ab_variant <- google_analytics(ga_tableid,
date_range = c("2019-10-21","2019-10-23"),
metrics = c("users","uniqueEvents"),
dimensions = c("dimension14", "eventCategory", "eventAction", "eventLabel"),
segments = ab_variantgroup,
anti_sample = TRUE)
make_csv <- write.csv(ab_variant,
"~/projectname/ab_variantgroup.csv")