랜딩페이지 비교 실험 유저 수 관련
: 리디렉션에 기능이 한 유저씩 각 페이지로 이동시켜 주는 것이 아닌 트래픽이 확인될 때 마다 랜덤화(무작위) 배정이 진행되어 A와 B페이지에 각각 50% 비율을 두고 무작위 배정을 시작하게 됩니다.
자세한 설명
GA 유저수와 랜딩페이지 원본-대안 합계 차이 많이 나는 이유
<!-- Start VWO Async Smartcode -->
<script type='text/javascript'>
window._vwo_code = window._vwo_code || (function(){
var account_id=464082,
settings_tolerance=2000,
library_tolerance=2500,
use_existing_jquery=false,
is_spa=1,
hide_element='body',
/* DO NOT EDIT BELOW THIS LINE */
f=false,d=document,code={use_existing_jquery:function(){return use_existing_jquery;},library_tolerance:function(){return library_tolerance;},finish:function(){if(!f){f=true;var a=d.getElementById('_vis_opt_path_hides');if(a)a.parentNode.removeChild(a);}},finished:function(){return f;},load:function(a){var b=d.createElement('script');b.src=a;b.type='text/javascript';b.innerText;b.onerror=function(){_vwo_code.finish();};d.getElementsByTagName('head')[0].appendChild(b);},init:function(){
window.settings_timer=setTimeout('_vwo_code.finish()',settings_tolerance);var a=d.createElement('style'),b=hide_element?hide_element+'{opacity:0 !important;filter:alpha(opacity=0) !important;background:none !important;}':'',h=d.getElementsByTagName('head')[0];a.setAttribute('id','_vis_opt_path_hides');a.setAttribute('type','text/css');if(a.styleSheet)a.styleSheet.cssText=b;else a.appendChild(d.createTextNode(b));h.appendChild(a);this.load('//dev.visualwebsiteoptimizer.com/j.php?a='+account_id+'&u='+encodeURIComponent(d.URL)+'&f='+(+is_spa)+'&r='+Math.random());return settings_timer; }};window._vwo_settings_timer = code.init(); return code; }());
</script>
<!-- End VWO Async Smartcode -->
VWO의 리디렉션(스플릿 테스트) 구조는 유저가 [Control]에 입력한 URL 주소의 페이지를 로드하게 되고 나서 부터 대안페이지로 이동하게 되는 매커니즘을 가지고 있습니다.
[settings_tolerance=2000, library_tolerance=2500] VWO가 설정로드 시간을 2초, VWO 라이브러리를 로드하는 시간 한도를 2.5초로 로드하게 되는 것으로 보아 설정 로드 시간이 최대 2초 정도 소요된다고 판단하여, 방문 즉시 트래픽을 잡게 해보니 원본에 도착할 때 방문 1개, 이후 대안으로 이동할 때 방문 1개
대안 페이지에 도착한 사람은 원본과 대안에 각 방문 1개씩 총 2개의 방문 데이터를 발생시키는 것을 확인하였고, 평균 1초 이후에는 리디렉션이 진행되어 각 페이지로 나눠진 데이터를 GA에서 조회할 때는 [방문 후 1초 이상 체류] 했던 유저들을 대상으로 데이터를 조회했기 때문에, GA 대시보드에서는 1초 이내 체류 했던 유저 포함 VWO 데이터를 조회할 때는 1초 이내 이탈한 유저를 제외하고 보기 때문에 데이터 차이가 발생한 것입니다
<aside> 💡 해당 내용들은 대표적인 예시 ‘*Coin flipping(***동전 던지기)’를 비유로 설명
</aside>