【问题标题】:Incorrect data in funnels漏斗中的数据不正确
【发布时间】:2017-10-19 11:04:07
【问题描述】:

我为两组用户记录了两个不同的事件。它们在远程配置中指定(随机百分比的 50%)。这些事件不应同时出现在一个用户中,但它们在漏斗中重叠。什么可以做错?

OnCompleteListener<Void> onCompleteListener = new OnCompleteListener<Void>() {
            @Override
            public void onComplete(@NonNull Task<Void> task) {
                if (task.isSuccessful()) {
                    mFirebaseRemoteConfig.activateFetched();



                    Boolean shuldShowPremiumDialoginNotification = mFirebaseRemoteConfig.getBoolean("premiumDialogInNotifications");
                    KLog.e(shuldShowPremiumDialoginNotification);
                    SharedPrefsManager.setShowPremiumDialogInNotifiactions(SettingsActivity.this, shuldShowPremiumDialoginNotification);
                    if (shuldShowPremiumDialoginNotification)
                        mFirebaseAnalytics.logEvent("premium_dialog_show_T", null);
                    else
                        mFirebaseAnalytics.logEvent("premium_dialog_show_F", null);


                } else KLog.e("remote config error " + task.getException().getMessage());
            }
        };

        if (mFirebaseRemoteConfig.getInfo().getConfigSettings().isDeveloperModeEnabled()) {
            // This forces Remote Config to fetch from server every time.
            mFirebaseRemoteConfig.fetch(0).addOnCompleteListener(this, onCompleteListener);
        } else {
            mFirebaseRemoteConfig.fetch().addOnCompleteListener(this, onCompleteListener);
        }
}

【问题讨论】:

    标签: android firebase firebase-analytics firebase-remote-config


    【解决方案1】:

    没有错 - 我认为需要了解的重要一点是 Firebase Analytics 中的渠道是“开放”渠道,而不是封闭渠道。这意味着它们实际上不是“有多少人遇到了事件 A,然后又遇到了事件 B”类型的图表——它们更像是“让我们并排显示事件 A 和事件 B”类型的报告。

    这就是你在这里看到的。大约 745 位用户看到了 dialog_T 事件,776 位用户说了 dialog_F 事件,这与您希望在远程配置设置中看到的几乎完全匹配。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2021-03-31
      • 2012-01-24
      • 1970-01-01
      • 2012-05-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多