正在提取所有页面的 Google 分析报告

Extracting Google Analytics report for all pages

我正在尝试使用 rga 库和以下行将数据从 Google 分析 s 导入 R。

myresults <-  ga$getData(id, start.date="2015-04-28",
     end.date="2015-05-28", metrics = "ga:exits",start = 1,max = 1000)

以上代码有效并确实提取了查询 "ga:exits", 指定的信息,我想知道是否存在可为每个页面提供页面浏览量报告的查询。

P.S。我试过 google 分析查询资源管理器。

真诚的, YJ

像这样的事情怎么样:

https://www.googleapis.com/analytics/v3/data/ga?ids=ga%3Axxxxxxxx&start-date=2015-05-01&end-date=2015-06-08&metrics=ga%3Apageviews&dimensions=ga%3ApagePath&sort=-ga%3Apageviews

寻找维度:https://developers.google.com/analytics/devguides/reporting/core/dimsmets。例如,ga:pageTitlega:pagePath.

您应该在维度中使用 ga:pagePath,在指标中使用 ga:pageviews。

    rga.open(instance = "ga", 
             client.id = "xxxxxxxxxxxxxxgooleusercontent.com", 
             client.secret = "xxxxx-xxxxe46z_N")

    ga$getData(ids,metrics="ga:pageviews", dimensions="ga:pagePath,
               start.date="yyyy-mm-dd",
               end.date="yyyy-mm-dd")

希望对您有所帮助。