forked from plovercode/DS-python-data-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro_slides.html
More file actions
executable file
·144 lines (118 loc) · 3.61 KB
/
intro_slides.html
File metadata and controls
executable file
·144 lines (118 loc) · 3.61 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="img/slides.css">
<link rel="stylesheet" href="./img/font-awesome-4.7.0/css/font-awesome.min.css">
<!-- <style>
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
#slideshow .slide .content .cols.two .col { width: 48%; }
</style>
-->
<style>
.section_background {background-color:#c2c444; color: #fff}
.day_background {background-color:#ececec; color: #000}
</style>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
</head>
<body>
<textarea id="source">
class: center, middle
# Data manipulation, analysis and visualisation in Python
Specialist course Doctoral schools of Ghent University,<br>
Next in June 2020
Joris Van den Bossche, Stijn Van Hoey
https://github.com/jorisvandenbossche/DS-python-data-analysis
---
count: false
class: center, middle, bgheader
background-image: url(./img/intro_system_1.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/intro_system_2.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/intro_system_3.png)
background-size: cover
---
class: center, middle
index | date
:-----:|:----:
2 | 19930000
8 | 1992-930
27 | 20050500
34 | 201405.01
162 | 7/9/2287
1400 | 0.0
2800 | start of the year 2015
3777 | Summer
8733 | 2013-2016
26766 | 26/09/2002 and later 1/1/2016
40788 | Nan
41277 | /
51002 | -999
51007 | -9999
---
class: center, middle

---
class: center, middle

---
class: center, middle

---
count: false
class: center, middle, bgheader
background-image: url(./img/intro_system_3.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/intro_system_4.png)
background-size: cover
---
class: center, middle
## See you in June!

</textarea>
<!-- <script src="https://gnab.github.io/remark/downloads/remark-latest.min.js">
</script>-->
<script src="img/remark.min.js" type="text/javascript">
</script>
<script>
var slideshow = remark.create();
</script>
<script>
remark.macros.scale = function (percentage) {
var url = this;
return '<img src="' + url + '" style="width: ' + percentage + '" />';
};
var slideshow = remark.create();
</script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>