Reputation: 1
I built an app and I would like to differentiate the behaviours of my users regarding their activity levels. Objectives : make monthly users become daily users by understanding how daily users use the app vs monthly users and trying to narrow the gap between them.
I am well aware of the Daily / Weekly / Monthly active users Firebase offer but it is still a snapshot at a specific time.
Basically, if someone open a session at least one time during 20 days / month => highly active users, if someone opens it at between 7-20 times a month => medium active user, if someone opens it less than 7 times => low active users.
Do you have any clue on how to split these to then understand their behaviour?
Upvotes: 0
Views: 126
Reputation: 1833
because you are tagging your question firebase database that means you want to do it programmatically. you can make a field in user node name it counter and every time the user login to the app you just increment the counter and make a query to bring the count that's it.
Upvotes: 1