Google Analytics,计算自定义指标的平均值

时间:2013-06-10 13:06:24

标签: google-analytics

在通用GA中,您可以使用多种预设指标来表示平均值;比如'平均花在页面上的时间'和'平均跳出率'。但是,当我创建自定义指标时,似乎没有办法计算它的平均值,你总是看到总和。

有没有办法查看指标的平均值而不仅仅是总和?

据我所知,通用GA仍处于公开测试状态,这只是一个错过的功能吗?

2 个答案:

答案 0 :(得分:4)

在当前版本的Google Analytics中,您现在可以使用“计算指标”。这些可用于创建平均值等。你不能将它们用于min / max,但它仅限于相当简单的计算。

因此,如果您在点击级别收集CustomMetricAvg,则需要将计算得出的指标{{CustomMetric}} / {{Page Views}} 定义为

let panGesture = UIPanGestureRecognizer(target: self, action: #selector(useItemPanGesture(_:)))
item.addGestureRecognizer(panGesture)

func useItemPanGesture(panGesture: UIPanGestureRecognizer) {
    let newView = createView()
    newView.addPanGesture(target: self, action: #selector(self.actualPanGesture(panGesture)))
    panGesture.enabled = false
}

func actualPanGesture(panGesture: UIPanGestureRecognizer) {
     //do pan gesture stuff
}

答案 1 :(得分:3)

你没有错过任何东西。计算的指标不可用。 现在有一个Google Analytics feature request,请为其加注星标或添加您的评论(希望Google Analytics小组会注意到这一点)。

另一种选择是导出数据并在Google Analytics之外进行计算。您可以进行正常的CSV / Excel导出,使用Core Reporting API或尝试Magic Script