-
Notifications
You must be signed in to change notification settings - Fork 3
/
installation.html
113 lines (93 loc) · 4.51 KB
/
installation.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
<html>
<head>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="index.css">
</head>
<body>
<div align="center">
<div id="header" align=left style="display:inline-block">
<div style="display:table;width:100%">
<div style="display:table-cell;vertical-align:middle;width:25%;padding-right:40px;padding-top:20px">
<img class="logo" src="https://raw.githubusercontent.com//CorrelAidSwitzerland/DataViz4Good/main/src/img/correlaidx_white.png" height=100px>
</div>
<div style="display:table-cell;vertical-align:bottom;width:75%;padding-top:20px">
<h1>Data Visualization for Social Good</h1>
<span style="white-space: nowrap">
<a href='https://correlaid.org/correlaid-x/switzerland/'><i class='fas fa-home'></i></a>
<a href='https://therbootcamp.github.io/I2R_2020Mar/'><i class='fas fa-clock'></i></a>
<a href='mailto:[email protected]'><i class='fas fa-envelope'></i></a>
<!-- a href='https://github.com/CorrelAidSwitzerland'><i class='fab fa-github'></i></a -->
<a href='https://twitter.com/CorrelAidSwiss'><i class='fab fa-twitter'></i></a>
<a href='https://github.com/CorrelAidSwitzerland'>
<font style='font-style:normal;font-size:20px;padding-left:8px'>CorrelAid Switzerland</font>
</a>
</span>
<br>
<span style="white-space: nowrap">
<img src='https://raw.githubusercontent.com/therbootcamp/therbootcamp.github.io/master/_sessions/_image/by-sa.png' style= 'height:2rem; vertical-align:baseline'/>
<font style='font-size:2rem;font-style:normal;padding-left:8px'>February 2021</font>
<span>
</div>
</div>
</div>
<br><br>
<div align="center" style="max-width:940px">
<br><br>
<table width=50% cellspacing=0 cellpadding=0 class="downloads">
<col width=100%>
<tr>
<td align=left>
<h2>1 - Install Base-R and RStudio on your laptops</h2>
<h4>
Use the following links to install the newest versions of R und RStudio.<br><br>
<b>Install Base-R</b>:
<a href="https://cran.r-project.org/bin/windows/base/R-4.0.3-win.exe">R 4.0.3 (Windows)</a>,
<a href="https://cran.r-project.org/bin/macosx/R-4.0.3.pkg">R 4.0.3 (Mac)</a><br>
<b>Install RStudio</b>:
<a href="https://download1.rstudio.org/desktop/windows/RStudio-1.4.1103.exe">RStudio 1.4 (Windows)</a>,
<a href="https://download1.rstudio.org/desktop/macos/RStudio-1.4.1103.dmg">RStudio 1.4 (Mac)</a>
</h4>
</td>
</tr>
</table>
<table width=50% cellspacing=0 cellpadding=0 class="downloads">
<col width=100%>
<tr>
<td align=left>
<h2>2 - Install necessary packages</h2>
<h4>
For this workshop, we will rely on R packages that need to be installed. To do this, run the following code within your R Console within R Studio: <br><br>
install.packages(c("tidyverse", "sf"))<br><br>
To avoid problems during the installation of packages, please enter n for No, when you are asked to install a package from source.<br><br>
</h4>
</td>
</tr>
</table>
<table width=50% cellspacing=0 cellpadding=0 class="downloads">
<col width=100%>
<tr>
<td align=left>
<h2>3 - Optional: Install additional software</h2>
<h4>
If you want to install packages from source (or if installation fails), install the following software for the necessary compilers.<br><br>
Windows: <a href="https://cran.r-project.org/bin/windows/Rtools/rtools40-x86_64.exe">RTools</a><br>
Mac: <a href="https://developer.apple.com/download/more/">Command line tools</a> (no direct link available)
</h4>
</td>
</tr>
</table>
<br><br>
<table width=50% cellspacing=0 cellpadding=0 class="zoom">
<tr>
<td>
<a href="https://correlaidswitzerland.github.io/DataViz4Good/" style="display:block;height:100%;width:100%">
<div style="display:table;height:60px;width:100%">
<div style="display:table-cell;vertical-align:middle;text-align:center;width:100%;color:black"><h4>Back</h4></div>
</div>
</a>
</td>
</tr>
</table>
</div>
</body>
</html>