Sample Ratio Mismatch (SRM) Checker
Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.
Co je Sample Ratio Mismatch (SRM) Checker?
Sample Ratio Mismatch (SRM) Checker je rozšíření Chrome vyvinuté https://lukasvermeer.nl, a jeho hlavní funkcí je „Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Sample Ratio Mismatch (SRM) Checker
Stáhněte si soubory rozšíření Sample Ratio Mismatch (SRM) Checker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Sample Ratio Mismatch (SRM) Checker |
ID | ikielffdbameifemkibfheolelbohipn |
Oficiální URL | https://chromewebstore.google.com/detail/sample-ratio-mismatch-srm/ikielffdbameifemkibfheolelbohipn |
Popis | Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms. |
Velikost souboru | 14.01 KB |
Počet instalací | 530 |
Aktuální Verze | 0.0.8 |
Poslední Aktualizace | 2023-06-03 |
Datum Vydání | 2020-03-11 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | https://lukasvermeer.nl |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://lukasvermeer.nl/srm |
URL Stránky Nápovědy | http://lukasvermeer.nl/srm/docs/faq/ |
URL Stránky Zásad Ochrany Soukromí | https://lukasvermeer.nl/srm/docs/privacy |
Podporované Jazyky | 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 } |