forked from ourcodingclub/ourcodingclub.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.html
372 lines (346 loc) · 15.4 KB
/
links.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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
---
layout: page
title: Useful Links
permalink: /links/
---
<!-- Slider Start -->
<section id="global-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h1>USEFUL LINKS</h1>
<b><p><big>A hand-picked list of resources that we used when learning to code and still refer back to frequently.</big></p></b>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Start -->
<section id="useful-links">
<div class="container">
<div class="row">
<div class="col-md-10">
<div class="block">
<h2>Introduction to R</h2>
<style type="text/css">
.tg {
border-collapse: collapse;
border-spacing: 0;
}
.tg td {
font-family: Arial, sans-serif;
font-size: 14px;
padding: 10px 5px;
border-style: solid;
border-width: 0px;
overflow: hidden;
word-break: normal;
border-top-width: 1px;
border-bottom-width: 1px;
}
</style>
<table class="tg">
<tr>
<td><a href="http://tryr.codeschool.com" target="_blank">http://tryr.codeschool.com</a></td>
<td align="right">Introduction to R, vectors, data frames and matrices</td>
</tr>
<tr>
<td><a href="http://www.sthda.com/english/wiki/r-basics-quick-and-easy" target="_blank">http://sthda.com</a></td>
<td align="right">A collection of R code ranging from basics, data visualisation and stats</td>
</tr>
<tr>
<td><a href=" http://www.cookbook-r.com/" target="_blank">http://www.cookbook-r.com/</a></td>
<td align="right">A comprehensive online guide to using R</td>
</tr>
<tr>
<td><a href="http://www.r-bloggers.com" target="_blank">http://www.r-bloggers.com</a></td>
<td align="right">A metablog of R tutorials</td>
</tr>
<tr>
<td><a href="http://blog.revolutionanalytics.com/2012/12/coursera-videos.html" target="_blank">http://blog.revolutionanalytics.com/2012/12/coursera-videos.html</a></td>
<td align="right">Videos from an online course on R (intro to R, data formatting, data visualisation)</td>
</tr>
<tr>
<td><a href="http://www.blopig.com/blog/2013/07/citing-r-packages-in-your-thesispaperassignments/" target="_blank">http://www.blopig.com/blog/2013/07/citing-r-packages-in-your-thesispaperassignments/</a></td>
<td align="right">How to cite R and R packages in your assignment</td>
</tr>
</table>
<h2>Graphics and Data Visualisation</h2>
<style type="text/css">
.tg {
border-collapse: collapse;
border-spacing: 0;
}
.tg td {
font-family: Arial, sans-serif;
font-size: 14px;
padding: 10px 5px;
border-style: solid;
border-width: 0px;
overflow: hidden;
word-break: normal;
border-top-width: 1px;
border-bottom-width: 1px;
}
</style>
<table class="tg">
<tr>
<td><a href="http://susanejohnston.wordpress.com/2013/08/30/base-graphics-in-r-a-detailed-idiots-guide" target="_blank">susanejohnston.wordpress.com/2013/08/30/base-graphics-in-r-a-detailed-idiots-guide/</a></td>
<td align="right">Base Graphics in R: A Detailed Idiot’s Guide</td>
</tr>
<tr>
<td><a href="http://ggplot2.org/book/" target="_blank">ggplot2.org/book/</a>
<td align="right">Sample chapters from Hadley Wickham’s ggplot2 book</td>
</tr>
<tr>
<td><a href="http://www.stat.columbia.edu/~tzheng/files/Rcolor.pdf" target="_blank">http://www.stat.columbia.edu/~tzheng/files/Rcolor.pdf</a></td>
<td align="right">R colour values</td>
</tr>
<tr>
<td><a href="http://www.sthda.com/english/wiki/be-awesome-in-ggplot2-a-practical-guide-to-be-highly-effective-r-software-and-data-visualization" target="_blank">ase.tufts.edu/bugs/guide/assets/R%20Graphics%20Cookbook.pdf</a></td>
<td align="right">Graphics guide, mostly ggplot2.</td>
</tr>
<tr>
<td><a href="http://shiny.rstudio.com" target="_blank">shiny.rstudio.com</a></td>
<td align="right">Shiny tutorials</td>
</p>
</tr>
</table>
<p>
<h2>R Markdown, Version Control & Reproducible Research</h2>
<style type="text/css">
.tg {
border-collapse: collapse;
border-spacing: 0;
}
.tg td {
font-family: Arial, sans-serif;
font-size: 14px;
padding: 10px 5px;
border-style: solid;
border-width: 0px;
overflow: hidden;
word-break: normal;
border-top-width: 1px;
border-bottom-width: 1px;
}
</style>
<table class="tg">
<tr>
<td><a href="http://susanejohnston.wordpress.com/2015/05/12/an-introduction-to-reproducible-research-in-r-and-r-studio" target="_blank">susanejohnston.wordpress.com/2015/05/12/an-introduction-to-reproducible-research-in-r-and-r-studio/</a></td>
<td align="right">An Introduction to Reproducible Research in R and RStudio</td>
</tr>
<tr>
<td><a href="http://www.latex-project.org" target="_blank">www.latex-project.org</a></td>
<td align="right">Download LaTeX, find useful tutorials and guides</td>
</tr>
<tr>
<td><a href="http://help.github.com/articles/good-resources-for-learning-git-and-github" target="_blank">help.github.com/articles/good-resources-for-learning-git-and-github/</a></td>
<td align="right">Github tutorial repository</td>
</tr>
<tr>
<td><a href="http://github.com/adam-p/markdown-here/wiki/Markdown-Here-Cheatsheet" target="_blank">github.com/adam-p/markdown-here/wiki/Markdown-Here-Cheatsheet</a></td>
<td align="right">Markdown cheatsheet</td>
</tr>
<tr>
<td><a href="http://www.rstudio.com/resources/webinars/introducing-notebooks-with-r-markdown" target="_blank">www.rstudio.com/resources/webinars/introducing-notebooks-with-r-markdown/</a></td>
<td align="right">R notebooks introduction video</td>
</tr>
<tr>
<td><a href="http://reu.dimacs.rutgers.edu/Symbols.pdf" target="_blank">reu.dimacs.rutgers.edu/Symbols.pdf</a></td>
<td align="right">LaTeX math mode syntax</td>
</tr>
<tr>
<td><a href="https://tobi.oetiker.ch/lshort/lshort.pdf" target="_blank">https://tobi.oetiker.ch/lshort/lshort.pdf</a></td>
<td align="right">Concise guide to LaTeX programming</td>
</tr>
<tr>
<td><a href="http://www.britishecologicalsociety.org/wp-content/uploads/Publ_Data-Management-Booklet.pdf" target="_blank">britishecologicalsociety.org/wp-content/uploads/Publ_Data-Management-Booklet.pdf</a></td>
<td align="right">British Ecological Society Guide to Data Management in Ecology and Evolution</td>
</tr>
<tr>
<td><a href="https://github.com/BES2016Workshop" target="_blank">github.com/BES2016Workshop</a></td>
<td align="right">Materials for the version control and reproducible code workshops at the British Ecological Society 2016 Annual Meeting</td>
</tr>
</p>
</table>
<p>
<h2>Statistical Analysis</h2>
<style type="text/css">
.tg {
border-collapse: collapse;
border-spacing: 0;
}
.tg td {
font-family: Arial, sans-serif;
font-size: 14px;
padding: 10px 5px;
border-style: solid;
border-width: 0px;
overflow: hidden;
word-break: normal;
border-top-width: 1px;
border-bottom-width: 1px;
}
</style>
<table class="tg">
<tr>
<td><a href="http://rcompanion.org/documents/RCompanionBioStatistics.pdf" target="_blank">rcompanion.org/documents/RCompanionBioStatistics.pdf</a></td>
<td align="right">Standard textbook for biological statistics using R</td>
</tr>
<tr>
<td><a href="http://r4ds.had.co.nz/" target="_blank">r4ds.had.co.nz/</a></td>
<td align="right">Hadley Wickham's R for Data Science book</td>
</tr>
<tr>
<td><a href="http://www.bodowinter.com/tutorial/bw_LME_tutorial1.pdf" target="_blank">www.bodowinter.com/tutorial/bw_LME_tutorial1.pdf</a></td>
<td align="right">Linear models and linear mixed effects models in R: Tutorial by Bodo Winter</td>
</tr>
<tr>
<td><a href="http://www.bodowinter.com/tutorial/bw_LME_tutorial2.pdf" target="_blank">www.bodowinter.com/tutorial/bw_LME_tutorial2.pdf</a></td>
<td align="right">A very basic tutorial for performing linear mixed effects analyses by Bodo Winter</td>
</tr>
</table>
</p>
<p>
<h2>Data Manipulation</h2>
<style type="text/css">
.tg {
border-collapse: collapse;
border-spacing: 0;
}
.tg td {
font-family: Arial, sans-serif;
font-size: 14px;
padding: 10px 5px;
border-style: solid;
border-width: 0px;
overflow: hidden;
word-break: normal;
border-top-width: 1px;
border-bottom-width: 1px;
}
</style>
<table class="tg">
<tr>
<td><a href="http://students.brown.edu/seeing-theory/index.html" target="_blank">students.brown.edu/seeing-theory/index.html</a></td>
<td align="right">Seeing Theory: a stunning visual guide to statistics</td>
</tr>
<tr>
<td><a href="http://seananderson.ca/2014/09/13/dplyr-intro.html" target="_blank">seananderson.ca/2014/09/13/dplyr-intro.html</a></td>
<td align="right">The dplyr package and pipes</td>
</tr>
<tr>
<td><a href="http://www.rstudio.com/wp-content/uploads/2015/02/data-wrangling-cheatsheet.pdf" target="_blank">www.rstudio.com/wp-content/uploads/2015/02/data-wrangling-cheatsheet.pdf</a></td>
<td align="right">Data wrangling cheatsheet, dplyr and tidyr</td>
</td>
</tr>
<tr>
<td><a href="http://www.rstudio.com/resources/cheatsheets" target="_blank">www.rstudio.com/resources/cheatsheets/</a></td>
<td align="right">Cheatsheets for ggplot, dplyr, Shiny, etc.</td>
</tr>
</table>
</p>
<p>
<p>
<h2>Shiny</h2>
<style type="text/css">
.tg {
border-collapse: collapse;
border-spacing: 0;
}
.tg td {
font-family: Arial, sans-serif;
font-size: 14px;
padding: 10px 5px;
border-style: solid;
border-width: 0px;
overflow: hidden;
word-break: normal;
border-top-width: 1px;
border-bottom-width: 1px;
}
</style>
<table class="tg">
<tr>
<td><a href="http://shiny.rstudio.com/tutorial/" target="_blank">http://shiny.rstudio.com/tutorial/</a></td>
<td align="right">The official Shiny tutorial from RStudio</td>
</tr>
</table>
</p>
<p>
<h2>Fun Stuff</h2>
<style type="text/css">
.tg {
border-collapse: collapse;
border-spacing: 0;
}
.tg td {
font-family: Arial, sans-serif;
font-size: 14px;
padding: 10px 5px;
border-style: solid;
border-width: 0px;
overflow: hidden;
word-break: normal;
border-top-width: 1px;
border-bottom-width: 1px;
}
</style>
<table class="tg">
<tr>
<td><a href="http://twitter.com/accidental__art" target="_blank">twitter.com/accidental__art</a></td>
<td align="right">Submissions of arty data visualisation and goofs</td>
</tr>
<tr>
<td><a href="https://lisacharlotterost.github.io/2016/09/29/learn-how-to-code/" target="_blank">lisacharlotterost.github.io/2016/09/29/learn-how-to-code/</a></td>
<td align="right">Funny illustration of how we all feel when coding</td>
</tr>
</table>
</p>
<p>
<h2>Troubleshooting</h2>
<style type="text/css">
.tg {
border-collapse: collapse;
border-spacing: 0;
}
.tg td {
font-family: Arial, sans-serif;
font-size: 14px;
padding: 10px 5px;
border-style: solid;
border-width: 0px;
overflow: hidden;
word-break: normal;
border-top-width: 1px;
border-bottom-width: 1px;
}
</style>
<table class="tg">
<tr>
<td><a href="http://stackoverflow.com" target="_blank">stackoverflow.com</a></td>
<td align="right">Ask Questions.</td>
</tr>
</table>
</p>
</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>