Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to calculate active user in Mobile App Analytics?

How to calculate active user or returning user or inActive user in mobile app google analytical appview ?

I have search lots of things.but no more accurate answer as per my confusion.

  1. If user has intalled the app once in his device and after install user has never launched our app.

  2. If user has installed our app and launch it daily, but user has not any transaction.

So Is this user active or inactive?

like image 756
dipali Avatar asked Mar 24 '14 05:03

dipali


1 Answers

If user has intalled the app once in his device and after install user has never launched our app. This user will never show up in Google Analytics, so not an Active user

(this isn't a user for Google Analytics until the app is opened and a screen view is sent)

If user has installed our app and launch it daily, but user has not any transaction. This user will be a Returning User as well as an Active User

For a user to appear in any of the Google Analytics report, at least one event / appview has to be sent to Google Analytics


New User

When the first Google Analytics send is performed, the SDK generates the client_id and sends it over to Google Analytics

Returning User

Every data being sent to Google Analyics is accompanied by client_id, a successful lookup to the previous client_id set would allow Google Analytics to tag as the user as returning user.

Active User

Google Analytics recieving data with the same client_id for several # of days is classified as a X days, where X is the continous time interavl the user has been sedning the event data.

like image 51
Sudhir Mishra Avatar answered Nov 07 '22 17:11

Sudhir Mishra