You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now in your results table you'd add &f=group_1,group_2,group_3 to the URLs and the results tables would then only show the medians of the group values.
That way you can store all the granular data but only display the median of the grouped results (which is good enough for most things).
Let me know if I can help with the has.js integration in any way!
-l
Just for kicks.. here's the code for dynamic test creation. though i'm not sure we need it
/*
dynamic browserscope test creation.
get an API key from creating an account on browserscope
http://groups.google.com/group/browserscope/browse_thread/thread/14cb53b2a589420a#
example code from mathias below.
*/
<?php>
function addBrowserscopeTest($title = '', $description = '', $url = '') {
$bURL = 'http://www.browserscope.org/user/tests/create?api_key=' . BROWSERSCOPE_API_KEY . '&name=' . urlencode($title) . '&description=' . urlencode(substr($description, 0, 60)) . '&url=' . urlencode($url);
if ($json = file_get_contents($bURL)) {
// $http_response_header is a magic variable containing the resulting headers of file_get_contents()
// var_dump($http_response_header);
$json = json_decode($json);
return $json->test_key;
} else {
return '';
}
}
The text was updated successfully, but these errors were encountered:
Got some detail from Lindsey on using grouping to send all the results in a single beacon and display it nicely.. this should work well for us
Just for kicks.. here's the code for dynamic test creation. though i'm not sure we need it
The text was updated successfully, but these errors were encountered: