Google分析 - 群体性事件由用户 [英] GoogleAnalytics - Group events by users

查看:248
本文介绍了Google分析 - 群体性事件由用户的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我用的是谷歌的开发者指南的例子来创建一个事件对我的Andr​​oid应用程序,看看它在我的谷歌Analytics帐户:

I used the Google's developer guide's example to create an event for my Android app to see it in my Google Analytics account:

// Get tracker.
Tracker t = ((AnalyticsSampleApp) getActivity().getApplication()).getTracker(
    TrackerName.APP_TRACKER);
// Build and send an Event.
t.send(new HitBuilders.EventBuilder()
    .setCategory(getString(categoryId))
    .setAction(getString(actionId))
    .setLabel(getString(labelId))
    .build());

的问题是,所有的事件都togather所示。有没有办法以某种方式由用户组他们,所以我可以看到许多事件每用户是如何发生的,而不是有多少总共发生了什么?

The problem is that all the events are shown togather. Is there a way to somehow group them by users so I can see how many events happened per user and not just how many happened in total?

推荐答案

如果你只是想能够跟踪每个会话事件的完成,那么你可以结合的目标(目标只是每个会话计算一次)。不过,如果你需要计算每个用户的事件比你可能要使用用户ID的自定义维度

If you just want to be able to track event completions per session, then you can simply use your event in conjunction with goals (goals are only counted once per session). However, if you require counting events per user than you will probably have to use the User ID custom dimension.

这篇关于Google分析 - 群体性事件由用户的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆