Sample Ratio Mismatch (SRM) Checker
Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.
¿Qué es Sample Ratio Mismatch (SRM) Checker?
Sample Ratio Mismatch (SRM) Checker es una extensión de Chrome desarrollada por https://lukasvermeer.nl, y su función principal es "Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Sample Ratio Mismatch (SRM) Checker
Descarga archivos de extensión Sample Ratio Mismatch (SRM) Checker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
The Sample Ratio Mismatch (SRM) test can be used to detect a wide variety of data quality issues that may affect online experiments (aka A/B tests). Only expected proportions and observed sample counts are required as input for this procedure, so this test can be used even in cases where experimenters only have access to summary statistics; such as when using third-party tools. This Chrome Extension automatically performs SRM checks and flags potential data quality issues on supported experimentation platforms. Supported platforms: - Convert.com - Google Optimize - Omniconvert - Optimizely - SiteGainer/Symplify - Visual Website Optimizer (VWO) - Zoho PageSense More information about SRM and this extension is available at https://lukasvermeer.nl/srm/. Sample Ratio Mismatch Checker was created by Lukas Vermeer, Heinrich Mahr and Georgi Georgiev.
Información Básica de la Extensión
Nombre | Sample Ratio Mismatch (SRM) Checker |
ID | ikielffdbameifemkibfheolelbohipn |
URL Oficial | https://chromewebstore.google.com/detail/sample-ratio-mismatch-srm/ikielffdbameifemkibfheolelbohipn |
Descripción | Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms. |
Tamaño del Archivo | 14.01 KB |
Cantidad de Instalaciones | 530 |
Versión Actual | 0.0.8 |
Última Actualización | 2023-06-03 |
Fecha de Publicación | 2020-03-11 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://lukasvermeer.nl |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://lukasvermeer.nl/srm |
URL de la Página de Ayuda | http://lukasvermeer.nl/srm/docs/faq/ |
URL de la Página de Política de Privacidad | https://lukasvermeer.nl/srm/docs/privacy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sample Ratio Mismatch (SRM) Checker", "short_name": "SRM Check", "version": "0.0.8", "description": "Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.", "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/lukasvermeer.nl\/srm\/*", "https:\/\/optimize.google.com\/*", "https:\/\/app.optimizely.com\/*", "https:\/\/app.vwo.com\/*", "https:\/\/sitegainer.com\/*", "https:\/\/conversion.symplify.com\/*", "https:\/\/app.convert.com\/*", "https:\/\/web.omniconvert.com\/*", "https:\/\/pagesense.zoho.eu\/*", "https:\/\/pagesense.zoho.com\/*" ], "js": [ "lib\/statistics-distributions.js", "srm.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "page_action": [], "icons": { "128": "icon128.png" }, "manifest_version": 2 } |