You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Over 8500 user contributed add-on packages currently on CRAN!
60
+
*Most commonly used data science software [kdnuggets](http://www.kdnuggets.com/2017/05/poll-analytics-data-science-machine-learning-software-leaders.html)
61
+
*__Free__ to use, __open source__ so you can see what code is doing to your data
62
+
*__Extensible__: Over 10000 user contributed add-on packages currently on CRAN! Bioconductor has more than 1300 packages, and many researchers provide packages through github.
56
63
*__Powerful__
57
64
* With the right tools, get more work done, faster.
58
65
*__Flexible__
59
66
* Not a question of _can_, but _how_.
60
-
*__Frustrating__
61
-
* Flexibility comes at a cost (easy to shoot yourself in the foot!).
<b>If R were an airplane, RStudio would be the airport</b>, providing many, many supporting services that make it easier for you, the pilot, to take off and go to awesome places. Sure, you can fly an airplane without an airport, but having those runways and supporting infrastructure is a game-changer.
76
82
</blockquote>
77
83
78
-
## The RStudio IDE
79
-
80
-
1. Source editor: Docking station for multiple files, Useful shortcuts ("Knit"), Highlighting/Tab-completion, Code-checking (R, HTML, JS), Debugging features
- Other tabs/panes: Graphics, R documentation, Environment pane, File system navigation/access, Tools for package development, git, etc
92
90
93
-
## Projects
91
+
---
92
+
class: inverse middle
93
+
# Your turn: Getting started
94
94
95
-
Creating a project helps organise work. For this workshop, I have created a project on my laptop called `SISBID-2016`.
95
+
-__Download a zip archive__ of the workshop files from [github site](https://github.com/SISBID/Module2) contains all the markdown files, code files, and data for this workshop. __Unzip the file__ and __rename__ it `SISBID-2017`
96
+
-__Create a project__ helps organise your work over these next few days called `SISBID-2017`.
96
97
97
98

98
99
99
-
## Your turn
100
-
101
-
Create a project for this workshop, in the directory where you downloaded the files from github. (Be sure that you open this at the start of each session. Generally it is a good idea NOT TO SAVE THE WORKSPACE when you close a project for the day.)
* File -> New File -> R Markdown -> OK -> Knit HTML
108
100
109
-
<divalign="center">
110
-
<imgsrc="newFile.png"width="1000">
111
-
</div>
101
+
-__Get started with RMarkdown__, by creating a new R notebook. Knit it.
102
+
- Now __open the file that created these slides__`0-preamble/index.Rmd`. Navigate to the code chunks at the bottom of the file and run them.
112
103
113
-
## What is R Markdown?
114
-
115
-
- From the [R Markdown home page](http://rmarkdown.rstudio.com/):
104
+
---
105
+
# What is R Markdown?
116
106
107
+
From the [R Markdown home page](http://rmarkdown.rstudio.com/):
117
108
- R Markdown is an authoring format that enables easy creation of dynamic documents, presentations, and reports from R.
118
109
- It combines the core syntax of __markdown__ (an easy-to-write plain text format) __with embedded R code chunks__ that are run so their output can be included in the final document.
119
110
- R Markdown documents are fully reproducible (they can be automatically regenerated whenever underlying R code or data changes).
0 commit comments