forked from jcoliver/learn-r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
000-setup-instructions.html
82 lines (69 loc) · 3.94 KB
/
000-setup-instructions.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
<html>
<head>
<meta charset="UTF-8">
<title>Setup instructions</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
</head>
<body>
<section class="page-header">
<h1 class="project-name">Learn-r</h1>
<h2 class="project-tagline">A suite of lessons for learning the R programming language</h2>
<!-- <a href="https://github.com/jcoliver/quick-r" class="btn">View on GitHub</a>
<a href="https://github.com/jcoliver/quick-r/zipball/master" class="btn">Download .zip</a>
<a href="https://github.com/jcoliver/quick-r/tarball/master" class="btn">Download .tar.gz</a>
-->
</section> <!-- end section page-header -->
<section class="main-content">
<p>You will need to install <strong>two</strong> pieces of software on your computer
for these lessons: <a href="#r-instructions">R</a> and
<a href="#rstudio-instructions">RStudio</a>. Installation for R may vary by your
operating system; follow the instructions below for your OS. Some lessons also include a
small amount of work in a spreadsheet environment like Microsoft Excel<sup>®</sup>
or LibreOffice Calc. If you do not have spreadsheet software, you can <a
href="https://www.libreoffice.org/discover/calc/"> download LibreOffice Calc</a> for free
(either the "fresh" or "still" versions will work).</p>
<p>If you have
questions about installation, or run into problems, please feel free to e-mail me
at <a href="mailto:[email protected]?Subject=R%20installation">
[email protected]</a>.</p>
<table>
<tr>
<td>
<h2 id="r-instructions">R</h2>
<h5>Windows</h5>
<p>Install R by downloading and running the exe file:
<a href="http://cran.r-project.org/bin/windows/base/release.htm">R Windows
Installer</a>.</p>
<h5>Mac</h5>
<p>For Mac OSX, release 10.6 and above, install R by downloading and running the
pkg file: <a href="http://cran.r-project.org/bin/macosx/R-latest.pkg">Mac OSX
package</a>.</p>
<p>For earlier releases of Mac OS, see details on installing
<a href="https://cran.r-project.org/bin/macosx/">older versions of R</a>.</p>
<h5>Linux</h5>
<p>Download the binary files for your Linux distribution from
<a href="http://cran.r-project.org/index.html">CRAN</a>. Alternatively, you can
use your package manager to install R (e.g. for Debian/Ubuntu, run
<code>sudo apt-get install r-base</code> and for Fedora run <code>sudo yum install
R</code>).</p>
</td>
</tr>
<tr>
<td>
<h2 id="rstudio-instructions">RStudio</h2>
<p>Download and install <a href="http://www.rstudio.com/ide/download/desktop">RStudio</a>.</p>
</td>
</tr>
</table>
<footer class="site-footer">
<span class="site-footer-credits">Back to <a href="index.html">Learn-r home page</a>.</span>
<span class="site-footer-owner"><a href="https://github.com/jcoliver/learn-r">Learn-r</a> is maintained by <a href="https://github.com/jcoliver">jcoliver</a>.</span>
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a> by <a href="https://twitter.com/jasonlong">Jason Long</a>.</span>
</footer>
</section> <!-- end section main-content -->
</body>
</html>