analytics

sum highest consecutive occurrence

时光怂恿深爱的人放手 提交于 2019-12-06 08:26:46
I have a table with three columns ( lending_id int, installment_n serial int, status text ) and I wonder how to retrieve the biggest gap of WAITING_PAYMENT (status) for each lending_id. For the following example: lending_id | installment_n | status 71737 1 PAID 71737 2 PAID 71737 3 PAID 71737 4 PAID 71737 5 PAID 71737 6 WAITING_PAYMENT 71737 7 WAITING_PAYMENT 71737 8 WAITING_PAYMENT 71737 9 WAITING_PAYMENT 71737 10 WAITING_PAYMENT 71737 11 WAITING_PAYMENT 71737 12 WAITING_PAYMENT 71737 13 WAITING_PAYMENT 71737 14 WAITING_PAYMENT 71737 15 WAITING_PAYMENT 71737 16 WAITING_PAYMENT 71737 17

Show Google Analytics dashboard on my site

拜拜、爱过 提交于 2019-12-06 07:09:39
问题 I have an ASP.NET website set up, and I'm using Google Analytics for page tracking. The only thing I don't like is that I have to go away from my site (to the Google Analytics site) to see the report. Is there any way to show the Google Analytics data on my own site with all the AJAX that they have? 回答1: From my understanding, GoogleAnalytics doesn't have an API that supports this yet. It's something many would love, and hopefully will be available in the future. For now, just open a tab and

Google Analytics and real-time analytics comparison: Chartbeat vs Clicky vs Mixpanel [closed]

人走茶凉 提交于 2019-12-06 06:39:45
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 2 years ago . We're curious to hear opinions about and experiences with Chartbeat, Clicky, Mixpanel, and Google Analytics. Do people deploy Google and one of these other real-time systems? Or is the real-time system sufficient to displace Google? Of the real-time systems, which do you use

Track Page Views using PHP

自作多情 提交于 2019-12-06 06:07:45
问题 I'm looking for a way to track the number of visits to a page, without counting duplicates (like someone hitting refresh several times) and I'd like to figure out the best way to do it without keeping track of every single IP address to view the page. Perhaps a cookie? Any other suggestions? 回答1: Either use Webalizer to analyse your logfiles or use Google Analytics to track those metrics for you or - if you are looking for an extendable and self hosted solution, try Piwik: Piwik is a

Create a histogram of session length in a given time period using Keen IO

那年仲夏 提交于 2019-12-06 04:57:46
We are trying to build a histogram of session length in a given time period. Currently, we have sess:start and sess:end events which contains the session id and user id. I am wondering what's the best way to compute this data? Can this be achieve using the funnel api? Stephanie Stroud Have you checkout out the recipes section in Keen IO's docs ? Here is an excerpt from the section on histogram recipes for Session Length that might be really helpful. Excerpt To create a histogram for session lengths, like the one shown above, you can run a count analysis on an event collection for completed

Oracle SQL query to group consecutive records

♀尐吖头ヾ 提交于 2019-12-06 04:47:11
问题 I've imported data ("Amount" and "Narration") from a spreadsheet into a table and need help with a query to group consecutive records according to their "Narration", for example: Expected output: line_no amount narration calc_group <-Not part of table ---------------------------------------- 1 10 Reason 1 1 2 -10 Reason 1 1 3 5 Reason 2 2 4 5 Reason 2 2 5 -10 Reason 2 2 6 -8 Reason 1 3 7 8 Reason 1 3 8 11 Reason 1 3 9 99 Reason 3 4 10 -99 Reason 3 4 I've tried some analytical functions:

Get Profile Key Score for Individual Page in Sitecore

房东的猫 提交于 2019-12-06 04:16:32
I have a question regarding Sitecore Analytics and user profile keys. I need to be able to get the score of a profile key for an individual page. For example, if I have a profile key called "traveler" that could have a value of 1-10 on a given page, I need to be able to get the value for that key that was assigned by the content author. I have found that by using the following: Sitecore.Analytics.AnalyticsTracker.Current.Data.Profiles.GetProfile("Profile Name").GetProfileKeyValue("traveler") I can get the total score that the user has accumulated throughout their session, but I cannot seem to

Using Amazon Mobile Analytics without configuring Amazon Cognito

为君一笑 提交于 2019-12-06 03:28:18
Compared to competing analytics services, Amazon Mobile Analytics appear to require many more configuration and integration steps. For example, in Flurry Analytics, the setup is pretty simple: [Flurry startSession:@"<app-id>"]; [Flurry logEvent:@"<event-name>"]; // Optionally, set the userID [Flurry setUserID:@"userid"]; I was hoping the equivalent in Amazon Mobile Analytics would be something like this for unauthenticated users: [AWSLogger defaultLogger].logLevel = AWSLogLevelVerbose; AWSMobileAnalytics* analytics = [AWSMobileAnalytics mobileAnalyticsForAppId:@"<app-id>"]; id

What are the pros and cons of loading data directly into Google BigQuery vs going through Cloud Storage first?

五迷三道 提交于 2019-12-06 02:16:11
Also, is there anything wrong with doing transforms/joins directly within BigQuery? I'd like to minimize the number of components and steps involved for a data warehouse I'm setting up (simple transaction and inventory data for a chain of retail stores.) Loading data via Cloud Storage is the fastest (and the cheapest) way. Loading directly can be done via app (using streaming insert which add some additional cost) For the doing transformation - if what are you plan/need to do can be done in BigQuery - you should do it in BigQuery :) - it is the best and fastest way of doing ETL. But you should

Create audience based on dynamic user property

梦想的初衷 提交于 2019-12-06 01:48:19
问题 I have an app in which a user can have a "paid" or "free" status. A user can switch from "free" to "paid" (if he does an in app purchase) or from "paid" to "free" if he stops to pay its subscription. Can I use a dynamic user property to track the information in Firebase ? In the doc it is not clear if it is allowed to have a dynamic user property value that can change over time (https://support.google.com/firebase/answer/6317519?hl=en) If it is not a good practice, how is it possible to do