我需要从Google Analytics获取会话百分比。但是,我可以从以下文档中获得新会话的百分比。
是否有任何指标或任何其他方式来检索此。
这是我的代码,我可以很容易地获得会话和新会话的百分比值,但只能获得会话百分比。
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%'
}
}
});
感谢您的帮助!