{extends "pluf/ab/base.html"} {block body}

A/B Testing Dashboard

{foreach $active as $test}

Test {$test['_id']}

{assign $alts=$test['stats']} {foreach $alts as $alt} {if $can_edit} {/if} {/foreach}
Option {$alt['alt']} {$test['alts'][$alt['alt']]|dump} {$alt['nconvr']}{if $alt['better']} ({$alt['comp']} change){/if}
Conv: {$alt['conv']}/{$alt['exp']}{if $alt['conf']} - Conf: {$alt['conf']}{/if}
{/foreach} {if count($active) == 0}

No running tests at the moment.

{/if}

The confidence is calculated with respect to the second best alternative to evaluate if the best alternative is significantly better than the second best.


{foreach $stopped as $test}

Stopped Test {$test['_id']}

{assign $alts=$test['stats']} {foreach $alts as $alt} {/foreach}
{if $test['winner'] == $alt['alt']}!{/if} Option {$alt['alt']} {$test['alts'][$alt['alt']]|dump} {$alt['nconvr']}{if $alt['better']} ({$alt['comp']} change){/if}
Conv: {$alt['conv']}/{$alt['exp']}{if $alt['conf']} - Conf: {$alt['conf']}{/if}
{/foreach} {/block}