File: loess.html

package info (click to toggle)
science.js 1.9.3%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 756 kB
  • sloc: javascript: 10,331; makefile: 82
file content (23 lines) | stat: -rw-r--r-- 570 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
    <title>LOESS</title>
    <script src="../../science.v1.js"></script>
    <script src="../../lib/d3/d3.js"></script>
    <style>
      text { font-family: sans-serif; font-size: 12px; }
      path { stroke: #000; fill: none; }
      .axis line, .axis path {
        fill: none;
        stroke: #000;
        shape-rendering: crispEdges;
      }
    </style>
  </head>
  <body>
    <div id="vis">
      <script src="loess.js"></script>
    </div>
  </body>
</html>