Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 778 Bytes

File metadata and controls

25 lines (16 loc) · 778 Bytes

Back to overview

A/B Tests

Running experiments? Tell Keewano which variant each player is in, so you can compare behaviour across groups in the dashboard.

Report a group assignment

Call this once you know the player's group for an experiment - ideally right after init.

Keewano.reportABTestGroupAssignment({ testName: 'checkout_flow', group: 'B' });
  • testName - your own identifier for the experiment.
  • group - a single character for the variant, conventionally 'A', 'B', 'C', ...

Note

group is one ASCII character. Report the assignment as early as you know it so the player's whole session is attributed to the right variant.


Related: Tutorial Tracking | Event Types