-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslides.html
More file actions
105 lines (79 loc) · 3.84 KB
/
slides.html
File metadata and controls
105 lines (79 loc) · 3.84 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Title of page (as it will appear in search results) -->
<title>Workshop Overview</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://ubc-library-rc.github.io/reveal-ubc/css/reset.css">
<link rel="stylesheet" href="https://ubc-library-rc.github.io/reveal-ubc/css/reveal.css">
<link rel="stylesheet" href="https://ubc-library-rc.github.io/reveal-ubc/css/ubc.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="https://ubc-library-rc.github.io/reveal-ubc/lib/css/monokai.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'https://ubc-library-rc.github.io/reveal-ubc/css/print/pdf.css' : 'https://ubc-library-rc.github.io/reveal-ubc/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h2># Data Normalization & Classification</h2>
</section>
<section data-background="#e6f7ff">
<section>
<h3>Learing Outcomes</h3>
<p>1) Investigate how data normalization impacts the way we perceive patterns in a dataset </p>
<p>2) Look at different data classification methods and how they impact the way we perceive patterns in a dataset </p>
</section>
<section>
<h3>What is Data Normalization</h3>
<p>Normalization, is the process of scaling (AKA Normalizing) one number by another. For example, we can as the question: How many people do Canadian Police kill per year? We need two pieces of information:
<br>A) The number of victims of police violence
<br>B) The lenght of the period of record
<br>Dividing A by B, this will tell us the average number of police killings per year over the period of record.</p>
</section>
<section>
<h3>Data Classification Methods</h3>
<p>We can use different classification methods to highlight different patterns in a dataset. The ones we'll focus on today are:
<br>* Equal Interval
<br>* Quantile
<br>* Natural Break
<br>* Standard Deviation
<br>* Manual Breaks </p>
</section>
</div>
</div>
<script src="https://ubc-library-rc.github.io/reveal-ubc/js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
// center: true,
hash: true,
transition: 'none', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'https://ubc-library-rc.github.io/reveal-ubc/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'https://ubc-library-rc.github.io/reveal-ubc/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'https://ubc-library-rc.github.io/reveal-ubc/plugin/highlight/highlight.js' },
{ src: 'https://ubc-library-rc.github.io/reveal-ubc/plugin/search/search.js', async: true },
{ src: 'https://ubc-library-rc.github.io/reveal-ubc/plugin/zoom-js/zoom.js', async: true },
{ src: 'https://ubc-library-rc.github.io/reveal-ubc/plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>