gpt4 book ai didi

python - 使用Google Analytics(分析)API每天获取结果,而不是日期范围内的总计

转载 作者:行者123 更新时间:2023-12-03 17:14:49 25 4
gpt4 key购买 nike

进行Google Analytics(分析)API查询时:

res = service.data().ga().get(ids='ga:152373812', start_date='7daysAgo', end_date='today',
metrics='ga:users', segment='gaid::7yMBa3f7RimTf2SFtRQaRh').execute()

pprint(res)


我获得了该日期范围(7天前到今天)的用户总数:

...
u'rows': [[u'100']]
...


如何获得每天的结果呢?例如就像是:

{'2018-07-06': 7,
...
'2018-07-12': 17,
'2018-07-13': 5}




这是完整的报告:

{u'columnHeaders': [{u'columnType': u'METRIC',
u'dataType': u'INTEGER',
u'name': u'ga:users'}],
u'containsSampledData': False,
u'id': u'https://www.googleapis.com/analytics/v3/data/ga?ids=ga:...&metrics=ga:users&segment=gaid::...&start-date=7daysAgo&end-date=today',
u'itemsPerPage': 1000,
u'kind': u'analytics#gaData',
u'profileInfo': {u'accountId': u'...',
u'internalWebPropertyId': u'...',
u'profileId': u'...',
u'profileName': u'...',
u'tableId': u'ga:...',
u'webPropertyId': u'...'},
u'query': {u'end-date': u'today',
u'ids': u'ga:...',
u'max-results': 1000,
u'metrics': [u'ga:users'],
u'segment': u'gaid::...',
u'start-date': u'7daysAgo',
u'start-index': 1},
u'rows': [[u'100']],
u'selfLink': u'https://www.googleapis.com/analytics/v3/data/ga?ids=ga:...&metrics=ga:users&segment=gaid::...&start-date=7daysAgo&end-date=today',
u'totalResults': 1,
u'totalsForAllResults': {u'ga:users': u'100'}}

最佳答案

解决方案是添加ga:date维度:

res = service.data().ga().get(..., dimensions='ga:date').execute()


最终给出:

...
u'rows': [[u'20180620', u'9'],
[u'20180621', u'10'],
...
[u'20180630', u'7']]
...

关于python - 使用Google Analytics(分析)API每天获取结果,而不是日期范围内的总计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51332720/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com