从Google Analytics(GAPI)获取会话百分比

时间:2017-09-21 12:33:44

标签: google-analytics metrics dimensions gapi

我需要从Google Analytics获取会话百分比。但是,我可以从以下文档中获得新会话的百分比。

https://developers.google.com/analytics/devguides/reporting/core/dimsmets#view=detail&group=user&jump=ga_percentnewsessions

This outcome is needed

是否有任何指标或任何其他方式来检索此。

这是我的代码,我可以很容易地获得会话和新会话的百分比值,但只能获得会话百分比。

  var mainChart5 = new gapi.analytics.googleCharts.DataChart({
query: {
  'ids': "ga:"+data[0]['viewId'],
  'dimensions': 'ga:operatingSystem',
  'metrics': 'ga:sessions,ga:percentNewSessions',
  'start-date': '30daysAgo',
  'end-date': 'today',
},
chart: {
  type: 'TABLE',
  container: 'main-chart-5-container',
  options: {
    // width: '100%'
  }
}

});

感谢您的帮助!

0 个答案:

没有答案