-
Notifications
You must be signed in to change notification settings - Fork 0
/
Regress.html
45 lines (38 loc) · 1.53 KB
/
Regress.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Rodrigo Zepeda Tello">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<title>Linear Regression</title>
<script src="script/d3.min.js"></script>
<!-- Mathjax is not needed right now-
<script type="text/javascript" src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']], processEscapes: true, }, TeX: { equationNumbers: { autoNumber: "AMS" } } });
</script>
-->
</head>
<body>
<div id="fig1" class="panel panel-default" style = "width: 100%;">
<div class="panel-heading" id="fig1title">
<h2>Regresión lineal</h2>
<a class="btn btn-danger btn-xs" id="borrar">Restart</a>
</div>
<div class="panel-body">
<div class="row">
<div class="col-lg-6" id="regress" style="text-align:center;">
</div>
<div class="col-lg-6" id="residuals" style="text-align:center;">
</div>
<script src="script/Regress.js "></script>
</div>
</div>
</div>
</body>
</html>