-
Notifications
You must be signed in to change notification settings - Fork 2
/
B01_intro_R_slides.qmd
69 lines (37 loc) · 1.33 KB
/
B01_intro_R_slides.qmd
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
---
format: revealjs
output-dir: slides/
---
##
![](https://www.r-project.org/Rlogo.png)
## R
* **R** is a programming language.
* Version 1.0 from 2000 (concept dates back to 1974)
* Main Aim: Statistical computing and data analysis
* R is an interpretet language
* R comes with a command line interface (cli)
* R code is directly executable via the cli
## R
![The R command line interface](assets/R_window.png)
## Why R?
* Easy to get into (although it might not feel that way at first)
* Designed for solving scientific problems
* Big community - Getting help is really easy.
* Open-source, active development
* Used in science, industry, healthcare, NGOs, ...
## Why R?
* R is expandable
* Specialized analysis for specific fields
* Bioinformatics, Medicine, ...
* Machine Learning, Remote Sensing, ...
* Writing Books, Blogs, Apps, ...
> The R package structure has been the key addition to the software - @Chambers2020
## Why R?
![@Wickham2023 : R for datascience](https://r4ds.hadley.nz/diagrams/data-science/base.png)
##
![](https://www.produnis.de/R/images/rstudiologo.png)
* Integrated Development Environment (IDE) for R
* Makes R "convenient" to use
* R command line interface + Text editor
* Project Environments, Package Management, Help Pages, Plot Viewer, File Browser ...
## References