Quote:
Originally Posted by DACA_Billionaire2be
Here Are The Averages By Service Center So Far Guys
To Regenerate The Chart Above in the future Follow the Instructions Below
- Use Chrome
- Go to the first page of this forum here
- press (CTR)+(SHIFT)+(J) OR (CMD)+(SHIFT)+(J) for OSX
- Go to Console
- Paste the following and hit enter
Code:
centers={VERMONT:{avg:0,total:0},CALIFORNIA:{avg:0,total:0},TEXAS:{avg:0,total:0},NEBRASKA:{avg:0,total:0}}
buffer=document.getElementById('posts').innerHTML,counter=0,centerList=[];
mainRegex=/\d\d\s*[dD]ays[^:]+:[^:]+\:\s*[^\?\<]+/g
arr=buffer.match(mainRegex);
dayRegex=/^\d+/
centerRegex=/[A-Z]+$/
for(x in arr)
{
day=arr[x].match(dayRegex)*1;
center=arr[x].match(centerRegex);
if(center in centers)
{
centers[center].total++
centers[center].avg+=day;
}
}
arr=[];numdays=[]
for(x in centers)
{
days=Math.floor(centers[x].avg/=centers[x].total);
arr.push(days);
numdays.push(days+' days')
centerList.push(x);
}
window.location='https://chart.googleapis.com/chart?chxt=x&cht=bvs&chs=400x300&chd='+escape('t:'+arr.join())+
'&chco='+escape('FFC6A5|FFFF42|DEF3BD|00A5C6|DEBDDE')+'&chbh=70&chds=0,100&chdl='+
escape(centerList.join('|'))+'&chxl='+escape('0:|'+numdays.join('|'))+'&chtt=Average%20Approval%20Time'
|
How can this be correct and people are either doing walk-ins or going by appointments for biometrics. In other words, the biometrics being the variable cannot result in a correct average time from when the application is submitted to the time of approval.