You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The action we're using now is an array of integers which it isn't possible to find out which value is related to which analytics. For example, we have an array of [1, 1, 1, 4, 3, 5, 5, 4, 3, 2, 2, 2, 1] which the first value is the minimum number of interactions to be active, and other values each representing the parameter for other analytics.
To make it more transparent, we're gonna update the array to a python dictionary (json object) as below
This update includes additional code updates which would be on the module analyzer_memberactivities.py and the documentation of function compute_member_activity within compute_member_activity.py
The text was updated successfully, but these errors were encountered:
The
action
we're using now is an array of integers which it isn't possible to find out which value is related to which analytics. For example, we have an array of[1, 1, 1, 4, 3, 5, 5, 4, 3, 2, 2, 2, 1]
which the first value is the minimum number of interactions to be active, and other values each representing the parameter for other analytics.To make it more transparent, we're gonna update the array to a python dictionary (json object) as below
This update includes additional code updates which would be on the module
analyzer_memberactivities.py
and the documentation of functioncompute_member_activity
withincompute_member_activity.py
The text was updated successfully, but these errors were encountered: