enum MAGES::Analytics::MAGESAnalytics::ScoringMergePolicy¶
Overview¶
The policy to calculate the score of actions performed multiple times. More…
enum ScoringMergePolicy { Average, Max, Min, First, Last, Aggregate, };
Detailed Documentation¶
The policy to calculate the score of actions performed multiple times.
Enum Values¶
Average
Keep the average of the action scores.
Max
Keep the max of the action scores.
Min
Keep the min of the action scores.
First
Keep the score of the first action that was performed.
Last
Keep the score of the last action that was performed.
Aggregate
Keep all the action scores. Note that the total score of the operation could end up being higher than 100%.