analytics

Good open source analytics/stats software in PHP? [closed]

爷,独闯天下 提交于 2019-12-03 09:56:11
The url shortening service I'm building needs to display some basic click stats to users: # of clicks, conversions, referring domains, and country (filterable by a date range). I'll possibly want more advanced stats in the future. Is there existing open source software that will allow me to pass events to it and then easily display a bar or line graph of that event (for example, a line graph of "conversions" between two specified dates). It seems like something like this should exist and would be much easier then building the whole thing from scratch. I know there are graphing scripts, but

Issue using Google Analytics with Require.js

家住魔仙堡 提交于 2019-12-03 09:47:23
问题 I'm using require.js (http://requirejs.org/) for a number of functions on my site and so far it seems to be working well. I've run into an issue when trying to include Google Analytics code though. The code seems to refuse to add a utm.gif and is not sending off a beacon to Google. I'm wondering if it's a scope thing. define(function() { var Analytics = {}; Analytics.Apply = function() { var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXX-X']); _gaq.push(['_trackPageview']); var ga =

Analytics for windows applications [closed]

醉酒当歌 提交于 2019-12-03 07:17:48
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Are there any .NET frameworks for collecting data similar to Google Analytics, for example to know how many people use a specific feature or how many people launch the app. The only solution that I have found is EQATEC Analytics which is pretty good, but doesn't show which feature or which versions of the app

MongoDB Approaches for storing large amounts of metrics / analytics data

家住魔仙堡 提交于 2019-12-03 06:48:10
问题 We are planning on using MongoDB to store large amounts of analytics data such as views and clicks. I'm unsure on the best way to structure the documents within MongoDB to aid querying and reduce database size. We need to record actions agains a pagename, client and the type of action. Ideally we need stats which go down the the year/month/day/hour level, we don't need or care about views per second or minute. While this document structure looks ok, I'm aware 100 vistors would generate a 100

Apple iTunes Connect Analytics: attribution provider and campaign id value passing to the app delegate

不问归期 提交于 2019-12-03 06:48:08
问题 The new iTunes connect has analytics features now. You can specify the provider (pid) id and campaign id (cid) in the url. e.g. https://itunes.apple.com/fr/app/candy-crush-saga/id553834731?mt=8&pid=1234&cid=My_Campaign Can you pass those values into the app for various purposes? I could not find anything that points to that, even after checking: didFinishLaunchingWithOptions:(NSDictionary *)launchOptions ref: http://www.applift.com/blog/new-era-attribution-analytics.html 回答1: Unfortunately

Android - Google tag Manager with Google Analytics and Firebase Analytics

青春壹個敷衍的年華 提交于 2019-12-03 06:10:22
I am working with a shopping app and would like to track so events occuring on my mobile application. My objective is to track the events using Firebase Analytics and Google Tag manager and push the same events to Google analytics. My event > Firebase > Google tag manager > Google analytics I followed the below guide to integrate Google tag manager and Firebase analytics to my application. https://developers.google.com/tag-manager/android/v5/ I was able to log my events on Firebase console and view in debug console. I have added dependency for Tag manager in my gradle so that the events are

Firing the Facebook Conversion Pixel

≯℡__Kan透↙ 提交于 2019-12-03 04:25:23
问题 I'm still pretty new to Javascript, but I was wondering what would be the best way to fire the Facebook conversion pixel (below) without actually loading a "confirmation"/"Thank You" page? <script type="text/javascript"> var fb_param = {}; fb_param.pixel_id = 'XXXXXXXXXXX'; fb_param.value = '0.00'; fb_param.currency = 'USD'; (function(){ var fpw = document.createElement('script'); fpw.async = true; fpw.src = '//connect.facebook.net/en_US/fp.js'; var ref = document.getElementsByTagName('script

React + Router + Google Tag Manager

落爺英雄遲暮 提交于 2019-12-03 04:19:40
问题 I've been spending a bit of time developing an MVP at quickcypher.com. I wanted to start putting in some analytics, and it worked great for just tracking total visits, but things went south when I tried to track different URLs on my site that uses React Router. My approach was this: Setup a GA tag that fires on some pages, using a trigger for a custom "pageview" event. When things did fire, I would set the field page to "/rap" for example. I was firing the event in the "componentDidMount"

Is there any way to track whether an email has been opened?

纵然是瞬间 提交于 2019-12-03 04:17:08
问题 I'm beginning to work on mailing-list software we use internally (EDIT: though we send emails externally as well, so we can't enforce policy on mail clients) . Is there any way to track whether, when I send an email to a particular user, that email has been opened as opposed to being marked as junk or being deleted without being opened? The simplest approach that I thought of was to serve a one-pixel custom image that would need to be loaded from our servers, but a number of mail clients

Exactly replicating R text preprocessing in python

会有一股神秘感。 提交于 2019-12-03 03:41:31
I would like to preprocess a corpus of documents using Python in the same way that I can in R. For example, given an initial corpus, corpus , I would like to end up with a preprocessed corpus that corresponds to the one produced using the following R code: library(tm) library(SnowballC) corpus = tm_map(corpus, tolower) corpus = tm_map(corpus, removePunctuation) corpus = tm_map(corpus, removeWords, c("myword", stopwords("english"))) corpus = tm_map(corpus, stemDocument) Is there a simple or straightforward — preferably pre-built — method of doing this in Python? Is there a way to ensure exactly