Sample Ratio Mismatch (SRM) Checker
Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms.
Sample Ratio Mismatch (SRM) Checker란 무엇입니까?
Sample Ratio Mismatch (SRM) Checker은(는) https://lukasvermeer.nl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms."입니다.
확장 프로그램 스크린샷
Sample Ratio Mismatch (SRM) Checker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Sample Ratio Mismatch (SRM) Checker |
ID | ikielffdbameifemkibfheolelbohipn |
공식 URL | https://chromewebstore.google.com/detail/sample-ratio-mismatch-srm/ikielffdbameifemkibfheolelbohipn |
설명 | Automatically performs Sample Ratio Mismatch (SRM) test and flags potential issues on supported experimentation platforms. |
파일 크기 | 14.01 KB |
설치 횟수 | 530 |
현재 버전 | 0.0.8 |
최근 업데이트 | 2023-06-03 |
출시 날짜 | 2020-03-11 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://lukasvermeer.nl |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://lukasvermeer.nl/srm |
도움말 페이지 URL | http://lukasvermeer.nl/srm/docs/faq/ |
개인정보 보호 정책 페이지 URL | https://lukasvermeer.nl/srm/docs/privacy |
지원되는 언어 | 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 } |