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 act_param 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
The
act_param
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
assess_engagement.py
The text was updated successfully, but these errors were encountered: