-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.Rpres
171 lines (122 loc) · 3.67 KB
/
presentation.Rpres
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
Overview of software learning tools
========================================================
author: Mark Hanly
date: Friday 15 February 2019
autosize: true
Let's face it. Software is scary.
========================================================
```{r, echo=FALSE, fig.width=8, fig.height=12, out.extra='style="float:left; position:fixed"'}
knitr::include_graphics("images/error-5.png")
```
```{r, echo=FALSE, fig.width=10, fig.height=10, out.extra='style="float:left; position:absolute; top:100px; left: 1200px"'}
knitr::include_graphics("images/error-2.jpg")
```
```{r, echo=FALSE, fig.width=8, fig.height=12, out.extra='style="float:left; position:absolute; top:200px; left: 400px"'}
knitr::include_graphics("images/error-3.jpg")
```
```{r, echo=FALSE, fig.width=10, fig.height=10, out.extra='style="float:left; position:absolute; top:500px; left: 1300px"'}
knitr::include_graphics("images/error-4.jpg")
```
```{r, echo=FALSE, fig.width=8, fig.height=10, out.extra='style="float:left; position:absolute; top:500px; left: -100px"'}
knitr::include_graphics("images/error-1.jpg")
```
Thinking about the end point
========================================================
- Assignment
- Thesis
- Research report
- Presentation
- Academic paper
- Webpage/interactive tool
[Here's an example](https://www.mja.com.au/system/files/issues/202_11/sch00103.pdf)
Two software tasks
========================================================
## Statistical Analysis
- Excel/Numbers
- SPSS
- **SAS**
- Stata
- **R**
- **Python**
***
## Communicating Results
- Word/Pages
- **Jupyter Notebooks**
- **RMarkdown/knitr**
Two approaches to producing an output
========================================================
## The **Office** model
- Analyse data in Excel
- Create a graph
- Cut and paste the graph into Word
- Write your report in Word
***
## The **Plain Text** model
-
Package wars
========================================================
![Courtesy of https://kieranhealy.org/blog/archives/2019/02/07/statswars/](images/package_wars.png)
Python
========================================================
```{r, echo=FALSE}
knitr::include_graphics("images/python.png")
```
- HDAT 9300 Principles of Programming
- HDAT 9500 Machine Learning and Data Mining
***
## Pros
- General purpose programming language
- Open source and free
- Widely used in many specialised areas
- Machine learning
- Deep learning
- Natural lanaguage processing
- Many online resources
## Cons
- Immature
- Compatibility issues
SAS
========================================================
- HDAT 9400 Management and Curation of Health Data
***
## Pros
- Handles large datasets well
- Data management is easy and transparent
- Well documented
- Widely used in many industries
- Government
- Pharmaceuticals
## Cons
- Not open source
- Expensive
- Slow to integrate novel methods
- Clunky
- Sub-par graphics
R
========================================================
- HDAT 9200 Statistical Foundations of HDS
- HDAT 9600 Statistical Modelling I
- HDAT 9700 Statistical Modelling II
- HDAT 9800 Visualisation and Communication of Health Data
***
## Pros
- Open source
- Free
- Easy to implement new methods
- Cutting edge
- Huge amount of plug-in libraries for a variety of goals
- Excellent graphical capabilities
## Cons
- Poorly documented
Communicating Results
========================================================
- Rmarkdown/knitr
- jupyter Notebooks
- Shiny interactive web applications
Communicating Results
========================================================
- Rmarkdown/knitr
- jupyter Notebooks
- Shiny interactive web applications
Further reading
========================================================