forked from ourcodingclub/ourcodingclub.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
executable file
·236 lines (226 loc) · 11 KB
/
work.html
File metadata and controls
executable file
·236 lines (226 loc) · 11 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
---
layout: page
title: Tutorials
permalink: /tutorials/
---
<!-- Slider Start -->
<section id="global-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h1>CODING CLUB TUTORIALS</h1>
<p>Here you can find our collection of programming and statistics tutorials. We welcome feedback on our work and are happy to answer any questions you might have on how to complete the tutorials.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Start -->
<section id="portfolio-work">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<div class="portfolio-menu">
<ul>
<li class="filter" data-filter="all">All tutorials</li>
<li class="filter" data-filter=".Rbasics">R basics</li>
<li class="filter" data-filter=".Github">Github</li>
<li class="filter" data-filter=".Dataform">Data formating</li>
<li class="filter" data-filter=".Datavis">Data visualisation</li>
<li class="filter" data-filter=".Modelling">Modelling</li>
<li class="filter" data-filter=".Markdown">Markdown</li>
<li class="filter" data-filter=".Shiny">Shiny</li>
</ul>
</div>
<p>Tutorials are posted here regularly for use in the classroom or at home.
The cool R sticker images are mostly by <a href="https://www.rstudio.com/about/gear/">RStudio</a></p>
<div class="portfolio-contant">
<ul id="portfolio-contant-active">
<li class="mix Rbasics">
<a href="https://ourcodingclub.github.io/2016/11/13/intro-to-r.html">
<img src="{{ site.baseurl }}/img/portfolio/work1.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Intro to R 1</h2>
<p>Getting started with R and R studio </p>
</div>
</div>
</a>
</li>
<li class="mix Rbasics">
<a href="https://ourcodingclub.github.io/2016/11/15/troubleshooting.html">
<img src="{{ site.baseurl }}/img/portfolio/work1.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Intro to R 2</h2>
<p>Troubleshooting and how to find help </p>
</div>
</div>
</a>
</li>
<li class="mix Markdown">
<a href="https://ourcodingclub.github.io/2016/11/24/rmarkdown-1.html">
<img src="{{ site.baseurl }}/img/portfolio/work4.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Markdown</h2>
<p>Using Markdown to save and share code </p>
</div>
</div>
</a>
</li>
<li class="mix Dataform">
<a href="https://ourcodingclub.github.io/2017/01/16/piping.html">
<img src="{{ site.baseurl }}/img/portfolio/tidyr2.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Easy and efficient data manipulation 1</h2>
<p>Tidy data with tidyr</p>
</div>
</div>
</a>
</li>
<li class="mix Dataform">
<a href="https://ourcodingclub.github.io/2017/01/16/piping.html#dplyr">
<img src="{{ site.baseurl }}/img/portfolio/work2.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Easy and efficient data manipulation 2</h2>
<p>Data manipulation with dplyr</p>
</div>
</div>
</a>
</li>
<li class="mix Dataform">
<a href="https://ourcodingclub.github.io/2017/01/16/piping.html#piping">
<img src="{{ site.baseurl }}/img/portfolio/work3.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Easy and efficient data manipulation 3</h2>
<p>Piping our way to tidy data</p>
</div>
</div>
</a>
</li>
<li class="mix Datavis">
<a href="https://ourcodingclub.github.io/2017/01/29/datavis.html">
<img src="{{ site.baseurl }}/img/portfolio/work6.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Data visualisation</h2>
<p>Making beautiful and informative graphs </p>
</div>
</div>
</a>
</li>
<li class="mix Dataform">
<a href="https://ourcodingclub.github.io/2017/02/08/funandloops.html">
<img src="{{ site.baseurl }}/img/portfolio/funl.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Intro to loops and functions in R</h2>
<p>Saving yourself lots of copying and pasting </p>
</div>
</div>
</a>
</li>
<li class="mix Datavis">
<a href="https://ourcodingclub.github.io/2016/12/11/maps_tutorial.html">
<img src="{{ site.baseurl }}/img/portfolio/work8_3.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Maps and spatial analysis</h2>
<p>Using R as a GIS software tool and creating informative maps</p>
</div>
</div>
</a>
</li>
<li class="mix Github">
<a href="https://ourcodingclub.github.io/2017/02/27/git.html">
<img src="{{ site.baseurl }}/img/portfolio/work7.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Intro to Github for version control</h2>
<p>Keeping track of your code and its many versions</p>
</div>
</div>
</a>
</li>
<li class="mix Modelling">
<a href="https://ourcodingclub.github.io/2017/02/28/modelling.html">
<img src="{{ site.baseurl }}/img/portfolio/lmicon.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>From distributions to linear models</h2>
<p>Getting comfortable with the basics of statistical modelling</p>
</div>
</div>
</a>
</li>
<li class="mix Modelling">
<a href="https://ourcodingclub.github.io/2017/03/15/mixed-models.html">
<img src="{{ site.baseurl }}/img/portfolio/LMMicon.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Introduction to linear mixed models</h2>
<p>Getting to grips with fixed and random effects</p>
</div>
</div>
</a>
</li>
<li class="mix Dataform">
<a href="https://ourcodingclub.github.io/2017/03/21/data-clustering.html">
<img src="{{ site.baseurl }}/img/portfolio/clustericon.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Intro to data clustering</h2>
<p>Finding patterns in your data</p>
</div>
</div>
</a>
</li>
<li class="mix Shiny Datavis">
<a href="https://ourcodingclub.github.io/2017/03/07/shiny.html">
<img src="{{ site.baseurl }}/img/portfolio/work5.jpg" alt="">
<div class="overly">
<div class="position-center">
<h2>Shiny</h2>
<p>Making interactive graphs and web apps</p>
</div>
</div>
</a>
</li>
<li class="mix Dataform">
<a href="https://ourcodingclub.github.io/2017/03/06/webscraping.html">
<img src="{{ site.baseurl }}/img/portfolio/work9.png" alt="">
<div class="overly">
<div class="position-center">
<h2>Web Scraping</h2>
<p>Retrieving useful information from web pages </p>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Call to action Start -->
<section id="call-to-action">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h2>We are always looking for new ideas and feedback.</h2>
<b><p><big>We are very keen to discuss ways to innovate teaching in quantitative analysis, and are also happy to share our experience in creating and leading Coding Club. Feel free to contact us with any questions or feedback - we would really appreciate your input!</big></p></b>
<a class="btn btn-default btn-call-to-action" href="#" >Get in touch</a>
</div>
</div>
</div>
</div>
</section>