-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathglossary.html
56 lines (46 loc) · 1.68 KB
/
glossary.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
46
47
48
49
50
51
52
53
54
55
56
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="static/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="static/ds4se.css" rel="stylesheet" type="text/css">
<script src="static/myglossary.js"></script>
</head>
<body onload="CreateTableFromJSON()">
<main>
<h1><a href="./index.html">Data Science for Software Engineering</a>: Glossary</h1>
<p>
Sometimes the biggest barrier to learning is the jargon that people use.
Here's a glossary of some terms from software engineering, statistics, and data science
so that you can tackle interesting problems
instead of being hung up on language.
If something isn't here, it's not you: it's us.
Please let us know what terms are missing or what definitions are confusing
and we'll do our best to fix them.
</p>
<table id="showData" class="table table-hover">
<thead>
<tr>
<th scope="col">Term</th>
<th scope="col">Defined</th>
</tr>
</thead>
<tbody>
</table>
</main>
<footer>
<p>
<a href="./LICENSE.md">
<img class="footer" src="./static/cc-by.svg" alt="License" />
</a>
<a href="https://github.com/rstudio-education/ds4se/">
<img class="footer" src="./static/github.svg" alt="Repository" />
</a>
<br/>
© 2019 <a href="https://towardsdatascience.com/@yimregister">Yim Register</a>
</p>
</footer>
</body>
</html>
<script src="static/helpers.js"></script>