1<!DOCTYPE html> 2<html> 3 <head> 4 <title>RAPPOR Results Overview</title> 5 6 <link rel="stylesheet" type="text/css" href="static/table-sort.css" /> 7 <script type="text/javascript" src="static/table-lib.js"></script> 8 9 <link rel="stylesheet" type="text/css" href="static/ui.css" /> 10 <script type="text/javascript" src="static/ui.js"></script> 11 </head> 12 13 <body onload="initOverview(gUrlHash, gTableStates, kStatusElem);" 14 onhashchange="onHashChange(gUrlHash, gTableStates, kStatusElem);"> 15 <p id="status"></p> 16 17 <p style="text-align: right"> 18 <a href="../../assoc-live/latest/assoc-overview.html">Association analysis</a> (latest) 19 </p> 20 21 <p style="text-align: right"> 22 <a href="../home.html">Home</a> / 23 <b>Overview</b> / 24 <a href="histograms.html">Histograms</a> 25 </p> 26 27 <h1>RAPPOR Results Overview</h1> 28 29 <table id="overview"> 30 </table> 31 32 <p> 33 Underlying data: <a href="cooked/overview.csv">overview.csv</a> 34 </p> 35 36 <h2>Metric Descriptions</h2> 37 38 <!-- Filled in by JS --> 39 <table id="metricMetadata"> 40 <thead> 41 <tr> 42 <td>Metric Name</td> 43 <td>Owners</td> 44 <td>Description</td> 45 </tr> 46 </thead> 47 <tbody> 48 </tbody> 49 </table> 50 51 <!-- page globals --> 52 <script type="text/javascript"> 53 var gUrlHash = new UrlHash(location.hash); 54 var gTableStates = {}; 55 var kStatusElem = document.getElementById('status'); 56 </script> 57 58 </body> 59</html> 60