-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtalks.html
33 lines (29 loc) · 1.32 KB
/
talks.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="mysite.css">
</head>
<body>
<!-- Menu Bar -->
<div class="topnav">
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="resources.html">Resources</a>
<a href="topics.html">Topics</a>
<a class="active" href="talks.html">Talks</a>
<a href="articles.html">Articles</a>
<a href="about.html">About</a>
</div>
<h1>Talks</h1>
<center>A list of the talks that I've given.</center>
<h2>R Ladies Manchester</h2>
On Tuesday 6th August 2019 I gave a talk at the <a href="https://www.meetup.com/rladies-manchester/events/262319624/">R Ladies Manchester meetup</a>, about how learning R by analysing a real data set that interested me taught me more than I intended to learn. I talked about how I used R, R Markdown, HTML, CSS and GitHub together to analyse the data and share the insights I found.
<br>
<br>
<ul>
<li><a href="https://docs.google.com/presentation/d/1iH9v1s-4VRcPBwwWYEv-aPk3wmdQkE8YaWLE9kO6H1A/edit?usp=sharing">Slides</a></li>
<li><a href="http://rpubs.com/foxnic/shootings_v1">Analysis report</a> that I demo'd after slide 3</li>
<li><a href="https://github.com/foxnic/US-Mass-Shootings-Analysis">Code</a></li>
</ul>
</body>
</html>