analytics

A way of logging more info than error ID in Flurry?

瘦欲@ 提交于 2019-12-11 02:45:49
问题 I use Flurry 5.4.0 for iOS at the moment and I have a concern about being able to log more information than only an error ID when it comes to the method: + (void)logError:(NSString *)errorID message:(NSString *)message error:(NSError *)error; You might wonder if I'm a bit slow, since there obviously exists a perfect parameter for just that, message:(NSString *)message . Well, unfortunately that message doesn't show up anywhere in the Flurry dashboard, which the Flurry Support Team confirmed

GoogleTagManager error: _avn has no backing implementation

那年仲夏 提交于 2019-12-11 02:33:23
问题 This simple push to the data layer of a screen view prints an error with verbose logging enabled. This and subsequent calls to the data layer all fail. They are neither logged nor executed. [[TAGManager instance].dataLayer push:@{@"event" : @"screen-loads", @"screen-name": [tracker get:kGAIScreenName], @"viewController" :NSStringFromClass([sender class]) }]; This is the error message being logged: GoogleTagManager error: _avn has no backing implementation. 回答1: The clue was in _avn . Our

tracking download completions from a website/cdn

风格不统一 提交于 2019-12-11 02:26:23
问题 I have a Drupal website where users are clicking on a link that initiates a file download from a content delivery network (CDN). A script is tracking the number of users who click the link to begin the download process. I'm looking for suggestions on how I might track the number of users who successfully complete the download process. 回答1: If you only need the number of completed downloads, just grab the raw logs from your CDN and run them through a log analysis tool. Most CDNs provide daily

Integrate Firebase Analytics with Xamarin Android

倖福魔咒の 提交于 2019-12-11 01:23:27
问题 There is no official documentation for analytics integration with xamarin. Only Xamarin Google Analytics Sample is available officially. But we found an official Firebase nuget package Xamarin.Firebase.Analytics has been available for analytics which is provided by microsoft. But there is no proper document to configure firebase with xamarin. We have created app id and .json file got generated from firebase console for our application. But there is no reference to configure these in xamarimn

Why are the results from iTtunes Search API ordered differently than a search result on an iOS device?

左心房为你撑大大i 提交于 2019-12-10 23:37:52
问题 I noticed that the apps returned from the iTunes search API for a specific search term are different (mostly in a different order) than when I search for this search term directly in the App Store app on the iOS device. Can I get the exact same results? (How do ASO tools like Sensortower achieve this?) 回答1: Answering my own question - the iTunes search API returns the results in the order they appear on the iTunes application on Windows or OS X. There is no API parameter or option to return

Get Parse Analytics Custom Dashboard

落爺英雄遲暮 提交于 2019-12-10 17:48:40
问题 Is it possible to fetch app analytics from Parse using a Javascript or REST API? I would like to show download numbers and custom events in my own dashboard. 回答1: No, you can only push by REST API. https://parse.com/docs/rest 来源: https://stackoverflow.com/questions/25803036/get-parse-analytics-custom-dashboard

Check if Google Analytics or Universal Analytics is installed?

岁酱吖の 提交于 2019-12-10 15:50:04
问题 I am trying, through javascript, to identify if Google Analytics or Universal Analytics is loaded. Some clients still use the old Google Analytics and we want to roll out a javascript that collects data. So i then need to write code for both versions to make sure it gets tracked regardless if its the normal or universal version of analytics. 回答1: Classic GA uses the "_gaq" object, and UA uses the "ga" object, so you could check for the existence of either of those if (_gaq) { // using classic

SWAB segmentation algorithm on time series data

断了今生、忘了曾经 提交于 2019-12-10 14:38:10
问题 I'm trying to understand how to do segmentation on a set of time series data (daily stock prices, temperatures etc.) and came across a book that explains how to do the SWAB (sliding-window and bottom-up) segmentation algorithm, but I don't quite understand it. This segmentation is part of a sonification algorithm. The following text is from "Multimedia Data Mining and Analytics: Disruptive Innovation". The SWAB segmentation algorithm gets four parameters—the input file (time series data), the

Track App Store download source

冷暖自知 提交于 2019-12-10 13:55:12
问题 Is there a way to track App Store download source ? Per example, if I post a link on the Facebook page of my app, can I know how many person downloaded my app from this link ? Thanks for your answer. 回答1: Yes, you can track downloads from devices iOS8+ and tvOS2+ with campaign links from Apple's App Analytics: https://analytics.itunes.apple.com/ Choose your app, then go to "Sources" and create a new link with the link builder there. It will look like this: pt= is your unique provider token;

Universal Analytics - 3rd Party Payment Gateway

青春壹個敷衍的年華 提交于 2019-12-10 09:50:58
问题 Our website is currently tracking with Universal Analytics via Tag Manager. Our check-out process includes getting redirected to a 3rd party payment gateway before going to the Thank You Page. So, it would look like this: site.com/checkout --> site.com/payment --> security.com --> site.com/thankyou Security.com is a 3rd party site and I am unable to add the tracking code there. I'd like to be able to see who are able to get past the security.com stage and make it to the site.com/thankyou page