6 | We are conducting an academic survey about perceiving values in visualizations. You will need a desktop or laptop (not cell phone or tablet) for this study. 7 |
8 |9 | Select the link below to complete the survey. At the end of the survey, you will receive a code to paste into the box below to receive credit for taking our survey.
10 |Survey link: here
13 |Provide the survey code here:
14 | 15 | 16 | 20 | -------------------------------------------------------------------------------- /experiment/public/util.js: -------------------------------------------------------------------------------- 1 | var isMobile = { 2 | Android: function() { 3 | return navigator.userAgent.match(/Android/i); 4 | }, 5 | BlackBerry: function() { 6 | return navigator.userAgent.match(/BlackBerry/i); 7 | }, 8 | iOS: function() { 9 | return navigator.userAgent.match(/iPhone|iPad|iPod/i); 10 | }, 11 | Opera: function() { 12 | return navigator.userAgent.match(/Opera Mini/i); 13 | }, 14 | Windows: function() { 15 | return navigator.userAgent.match(/IEMobile/i); 16 | }, 17 | any: function() { 18 | return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows()); 19 | } 20 | } 21 | 22 | function showMobileBan() { 23 | var str = 'Sorry. Mobile devices are not allowed in this survey.'; 24 | 25 | alert(str); 26 | 27 | d3.selectAll('div').remove(); 28 | 29 | d3.select('body') 30 | .append('p').html(str) 31 | .style('font-size', '40px'); 32 | } 33 | -------------------------------------------------------------------------------- /experiment/redis.conf: -------------------------------------------------------------------------------- 1 | appendonly yes 2 | bind 127.0.0.1 3 | -------------------------------------------------------------------------------- /ranking-correlation.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | 15 | AutoAppendNewline: Yes 16 | --------------------------------------------------------------------------------