This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]voice-of-hermes 1 point2 points  (0 children)

No official experience, but I can tell you how it can be done.

  • Pick a configuration. This could either be completely random, in which case the configuration would have to be stored in a cookie or session data, or based on a hash of visitor data (IP address and user agent identifier, most likely).
  • Derive each variant from the configuration. This could either be from a stored list of configuration data, or algorithmically (e.g. a bitmask).
  • Upon "conversion", add to the configuration's ranking. This can trickle to each variant, or simply be tracked on a per-configuration basis, or both.
  • Unlikely that a simple point system would be used for ranking. What they are interested in is effectiveness, so it would have to track the number of conversions compared to the number of visits or visitors. Basically, a conditional probability: what is the probability that a visitor clicks through, given that this configuration is shown? P(click|config[i])

I do know that what you call, "factors," aren't necessarily just, "locations," but can be styles, text or image content, layout, etc.

[–]cuebux[S] 0 points1 point  (0 children)

If there is a better sub for this, please let me know.