-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtools.html
86 lines (49 loc) · 3.68 KB
/
tools.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ICS 80</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/4145f6a1ca.js"></script>
<!-- function for adding html within html-->
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script>
$(function () {
$(".load-html").each(function () {
$(this).load(this.dataset.source);
});
});
</script>
</head>
<body>
<div class="load-html" data-source="navbar.html"></div>
<div class = "main-text">
<a href="https://r4ds.had.co.nz/"><b>R for Data Science</b></a>
by Hadley Whickham & Garrett Grolemund
The free online textbook we will be using for the first few weeks while you're finding your feet with R, data, and tidyverse.
<hr>
<a href="https://cran.csiro.au/"><b>R</b></a>
We will be using the R programming language and associated visualisation packages to explore the wide world of data viz.
<hr>
<a href="https://rstudio.com/products/rstudio/download/"><b>R Studio</b></a>
R Studio is the integrated development environment (IDE) we will be using to work in R. It's free to download and use.
<hr>
<a href="https://zoom.us"><b>Zoom</b> </a> Workshops will be available in person or on Zoom each week, starting in Week 2. Lectures will be in short streamable or downloadable videos, not over Zoom.
<hr>
<a href="https://join.slack.com/t/dataviz2021mxb262/shared_invite/zt-kx3z5oav-QaNUhIXghMERjmJeBxSBBg"><b>Unit Slack page</b> </a> All your communications with the teaching team and other students (outside of class) will be via Slack. This link takes you straight to the unit page, where you can easily register using your QUT email address for free. You can then either access Slack through the browser, a downloadable desktop application, or an app on your phone/tablet. All are free.
Slack is becoming widely used in tech companies and in academia as a replacement for (or complement to) email. It's quick and easy to send messages to the whole group, to a smaller group chat, or one-on-one without getting bogged down in someone's email inbox. Many of the School of Mathematical Sciences' industry partner companies who hire our graduates use Slack, and lots of our graduates (i.e. maybe you in a couple of years!) use this tool every day.
<hr>
<a href="https://blackboard.qut.edu.au">
<b> Blackboard</b>
</a>
All your materials will be avaialable here on this unit website, and all communication will happen on Slack. Blackboard will just serve as an assignment interface -- this is where you'll submit all of your assessment, and where you'll get your marks back.
<hr>
</div>
<div class="load-html" data-source="footer.html"></div>
</body>
</html>