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>
|