abby é uma biblioteca de testes A/B PHP simples, mas poderosa.
A biblioteca permite configurar facilmente testes ( experimentos ), seus grupos de controle e variação, rastrear seus usuários , obter estatísticas detalhadas (como tamanhos de amostra recomendados e determinar a confiança de seus resultados ), incluindo se um experimento alcançou significância estatística .
O vencedor (e a confiança) é determinado usando estatísticas Bayesianas, calculando o valor p dos seus resultados para verificar se a hipótese nula pode ser rejeitada. Um tamanho de amostra mínimo acompanhante também é calculado usando um teste bicaudal para controlar a taxa de descoberta falsa.
abby é livre de dependências e completamente independente de banco de dados, o que significa que ele simplesmente funciona com os dados que você fornece e expõe uma variedade de métodos para você armazenar o resultado no armazenamento de sua escolha.
composer require andreekeberg/ abby
// Setup a new Token instance
$ token = new abby Token ();
// If we can't find an existing token cookie, generate one and set tracking cookie
if (! $ token -> getValue ()) {
$ token -> generate ()-> setCookie ();
}
// Setup a User instance
$ user = new abby User ();
// Associate the token with our user
$ user -> setToken ( $ token );
// List of experiments associated with a tracking token
$ data = [
[
' id ' => 1 ,
' group ' => 1 ,
' viewed ' => true ,
' converted ' => false
]
];
// Loop through users existing experiments and add them to our user instance
foreach ( $ data as $ item ) {
// Setup experiment instance based on an existing experiment
$ experiment = new abby Experiment ([
' id ' => $ item [ ' id ' ]
]);
// Setup a group instance based on stored data
$ group = new abby Group ([
' type ' => $ item [ ' group ' ]
]);
// Add the experiment (including their group, and whether they have viewed and converted)
$ user -> addExperiment ( $ experiment , $ group , $ item [ ' viewed ' ], $ item [ ' converted ' ]);
}
// Experiment data
$ data = [
' id ' => 2
];
// Make sure the experiment isn't already in the users list
if (! $ user -> hasExperiment ( $ data [ ' id ' ])) {
// Setup a new experiment instance
$ experiment = new abby Experiment ([
' id ' => $ data [ ' id ' ]
]);
// Assign the user to either control or variation in the experiment
$ group = $ user -> assignGroup ( $ experiment );
// Add the experiment (including assigned group) to our user instance
$ user -> addExperiment ( $ experiment , $ group );
}
// Getting updated user experiment list
$ user -> getExperiments ();
// Store updated experiment list for our user
// Experiment data
$ data = [
' id ' => 1
];
// Record a view for the experiment in question
$ user -> setViewed ( $ data [ ' id ' ]);
// If the user is part of the variation group
if ( $ user -> inVariation ( $ data [ ' id ' ])) {
// Apply a custom class to an element, load a script, etc.
}
// Experiment data
$ data = [
' id ' => 1
];
// On a custom goal, check if user has viewed the experiment and define a conversion
if ( $ user -> hasViewed ( $ data [ ' id ' ])) {
$ user -> setConverted ( $ data [ ' id ' ]);
}
// Getting updated user experiment data
$ user -> getExperiments ();
// Store updated data for our user
// Setup experiment instance with stored results
$ experiment = new abby Experiment ([
' groups ' => [
[
' name ' => ' Control ' ,
' views ' => 3000 ,
' conversions ' => 300
],
[
' name ' => ' Variation ' ,
' views ' => 3000 ,
' conversions ' => 364
]
]
]);
// Retrieve the results
$ result = $ experiment -> getResult ();
// Get the winner
$ winner = $ result -> getWinner ();
/**
* Get whether we can be confident of the result (even if we haven't
* reached the minimum number of views for each variant)
*/
$ confident = $ result -> isConfident ();
/**
* Get the minimum sample size (number of views) required for each group to
* reach statistical significance, given the control groups current conversion
* rate (based on the configured minimumDetectableEffect)
*/
$ minimum = $ result -> getMinimumSampleSize ();
/**
* Get whether the results are statistically significant
*/
$ significant = $ result -> isSignificant ();
/**
* Get complete experiment result
*/
$ summary = $ result -> getAll ();
Leia as diretrizes de contribuição.
Consulte o changelog para obter um histórico completo do projeto.
abby é licenciada sob a licença do MIT.