Skip to content

Commit 83fd8df

Browse files
committed
Updated from dicook/SISBID-2017
1 parent 328af76 commit 83fd8df

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+7909
-5387
lines changed

0-preamble/Hello-Brian.png

-26.8 KB
Binary file not shown.

0-preamble/Hello-Bryan.png

-27.7 KB
Binary file not shown.

0-preamble/index.Rmd

+55-64
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
---
22
title: "Preamble"
3-
subtitle: "SISBID 2016"
4-
author: "Di Cook ([email protected], @visnut); Heike Hofmann ([email protected], @heike_hh)"
5-
date: "07/13/2016"
3+
subtitle: "SISBID 2017 <br> https://github.com/SISBID/Module2"
4+
author: "Di Cook ([email protected], @visnut) <br> Heike Hofmann ([email protected], @heike_hh)"
5+
date: "07/12-14/2017"
66
output:
7-
ioslides_presentation:
8-
transition: default
9-
widescreen: true
10-
css:
11-
styles.css
7+
xaringan::moon_reader:
8+
css: ["default", "myremark.css"]
9+
self_contained: false
10+
nature:
11+
highlightStyle: github
12+
highlightLines: true
13+
countIncrementalSlides: false
1214
---
1315

1416
```{r, echo = FALSE, message = FALSE, warning = FALSE, warning = FALSE}
@@ -17,48 +19,51 @@ knitr::opts_chunk$set(
1719
warning = FALSE,
1820
error = FALSE,
1921
collapse = TRUE,
20-
comment = "#",
21-
fig.height = 4,
22-
fig.width = 8,
22+
comment = "",
23+
fig.height = 8,
24+
fig.width = 12,
2325
fig.align = "center",
2426
cache = FALSE
2527
)
2628
```
2729

28-
##
30+
2931

3032
![](Hello-Di.png)
3133

32-
##
34+
---
35+
3336

3437
![](Hello-Heike.png)
3538

36-
##
39+
---
40+
3741

3842
![](Hello-Brian.png)
3943

40-
##
44+
---
4145

42-
![](Hello-Bryan.png)
4346

44-
## Getting up and running
47+
![](Hello-Jeremy.png)
48+
49+
---
50+
# Getting up and running
4551

4652
- R and RStudio
4753
- Projects
4854
- RMarkdown
4955
- Web site
5056

51-
## R is ...
57+
---
58+
# R is ...
5259

53-
* __Free__ to use
54-
* __Extensible__
55-
* 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.
5663
* __Powerful__
5764
* With the right tools, get more work done, faster.
5865
* __Flexible__
5966
* Not a question of _can_, but _how_.
60-
* __Frustrating__
61-
* Flexibility comes at a cost (easy to shoot yourself in the foot!).
6267

6368
```{r, eval = FALSE, echo = FALSE}
6469
# devtools::install_github("metacran/crandb")
@@ -67,66 +72,52 @@ knitr::opts_chunk$set(
6772
# [1] 8654
6873
```
6974

70-
## RStudio is ...
75+
---
76+
# RStudio is ...
7177

7278
[From Julie Lowndes](http://jules32.github.io/resources/RStudio_intro/):
7379

7480
<blockquote>
7581
<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.
7682
</blockquote>
7783

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
81-
2. Console window: Highlighting/Tab-completion, Search recent commands
82-
3. Other tabs/panes: Graphics, R documentation, Environment pane, File system navigation/access, Tools for package development, git, etc
83-
84-
## Files for this workshop
85-
86-
- [github site](https://github.com/SISBID/Module2) contains all the markdown files, code files, and data for this workshop
87-
- Clone a copy to your desktop
84+
---
85+
# The RStudio IDE
8886

89-
<div align="center">
90-
<img src="dir.png" width="300">
91-
</div>
87+
- Source editor: Docking station for multiple files, Useful shortcuts ("Knit"), Highlighting/Tab-completion, Code-checking (R, HTML, JS), Debugging features
88+
- Console window: Highlighting/Tab-completion, Search recent commands
89+
- Other tabs/panes: Graphics, R documentation, Environment pane, File system navigation/access, Tools for package development, git, etc
9290

93-
## Projects
91+
---
92+
class: inverse middle
93+
# Your turn: Getting started
9494

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`.
9697

9798
![](projectname.png)
9899

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.)
102-
103-
* File -> New Project -> Existing Directory -> Empty Project
104-
105-
## Hello R Markdown!
106-
107-
* File -> New File -> R Markdown -> OK -> Knit HTML
108100

109-
<div align="center">
110-
<img src="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.
112103

113-
## What is R Markdown?
114-
115-
- From the [R Markdown home page](http://rmarkdown.rstudio.com/):
104+
---
105+
# What is R Markdown?
116106

107+
From the [R Markdown home page](http://rmarkdown.rstudio.com/):
117108
- R Markdown is an authoring format that enables easy creation of dynamic documents, presentations, and reports from R.
118109
- 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.
119110
- R Markdown documents are fully reproducible (they can be automatically regenerated whenever underlying R code or data changes).
120111

121-
## Installing packages
112+
---
113+
# Installing packages
122114

123115
From CRAN
124116

125117
```{r eval=FALSE}
126118
install.packages("ggenealogy")
127119
```
128120

129-
##
130121

131122
From bioconductor
132123

@@ -135,24 +126,24 @@ source("https://bioconductor.org/biocLite.R")
135126
biocLite("ggbio")
136127
```
137128

138-
##
139-
140129
From github repos
141130

142131
```{r eval=FALSE}
143132
devtools::install_github("heike/gglogo")
144133
devtools::install_github("haleyjeppson/ggmosaic")
145134
```
146135

147-
## Resources
136+
---
137+
# Resources
148138

149139

150-
- [RStudio IDE cheat sheet](http://www.rstudio.com/wp-content/uploads/2016/01/rstudio-IDE-cheatsheet.pdf)
151-
- [rmarkdown cheat sheet](http://www.rstudio.com/wp-content/uploads/2016/03/rmarkdown-cheatsheet-2.0.pdf)
152-
- [Q/A site: http://stackoverflow.com](http://stackoverflow.com)
153-
- [Dynamic Documents with R and knitr, Yihui Xie](http://yihui.name/knitr/)
140+
- RStudio IDE [RStudio IDE cheat sheet](https://www.rstudio.com/wp-content/uploads/2016/01/rstudio-IDE-cheatsheet.pdf)
141+
- RMarkdown [cheat sheet](https://www.rstudio.com/wp-content/uploads/2016/03/rmarkdown-cheatsheet-2.0.pdf), [reference guide](https://www.rstudio.com/wp-content/uploads/2015/03/rmarkdown-reference.pdf)
142+
- Q/A site: [http://stackoverflow.com](http://stackoverflow.com)
143+
- Dynamic Documents with R and knitr [Yihui Xie](http://yihui.name/knitr/)
154144

155-
## Share and share alike
145+
---
146+
# Share and share alike
156147

157148
Materials for this workshop build on slides provided by several people, but primarily Hadley Wickham and Carson Sievert.
158149

0-preamble/index.html

+112-223
Large diffs are not rendered by default.

0-preamble/myremark.css

+153
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
@import url(https://fonts.googleapis.com/css?family=Actor);
2+
@import url(https://fonts.googleapis.com/css?family=Droid+Serif);
3+
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
4+
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400,500,600);
5+
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
6+
7+
body {
8+
font-family: 'Actor', sans-serif;
9+
}
10+
h1, h2, h3 {
11+
font-family: 'Yanone Kaffeesatz';
12+
font-weight: 400;
13+
margin-bottom: 0;
14+
color: #1B9E77;
15+
}
16+
h1:before {
17+
color: #D95F02;
18+
font-family: "FontAwesome";
19+
margin-right: 10px;
20+
}
21+
.remark-slide-content h1 { font-size: 3em; }
22+
.remark-slide-content h2 { font-size: 1.9em; }
23+
.remark-slide-content h3 { font-size: 1.5em; }
24+
.footnote {
25+
position: absolute;
26+
bottom: 3em;
27+
font-style: italic;
28+
font-size: 70%;
29+
}
30+
li { line-height: 1.85em; }
31+
li p { line-height: 1.25em; }
32+
li {
33+
list-style-type: none;
34+
}
35+
ul li:before {
36+
content: "\f080";
37+
font-family: "FontAwesome";
38+
margin-right: 10px;
39+
color: #D95F02;
40+
}
41+
ul li li:before {
42+
content: "\f1fe";
43+
font-family: "FontAwesome";
44+
margin-right: 10px;
45+
}
46+
.red { color: #D00000; }
47+
.orange { color: #FFBA08; }
48+
.blue { color: #3F88C5; }
49+
.large { font-size: 2em; }
50+
a, a > code {
51+
color: #D95F02;
52+
text-decoration: none;
53+
}
54+
code {
55+
border-radius: 5px;
56+
}
57+
.remark-code, .remark-inline-code { font-family: 'Source Code Pro'; font-size: 80%; }
58+
.remark-code-line-highlighted { background-color: #373832; }
59+
.pull-left {
60+
float: left;
61+
width: 47%;
62+
}
63+
.pull-right {
64+
float: right;
65+
width: 47%;
66+
}
67+
.pull-right ~ p {
68+
clear: both;
69+
}
70+
#slideshow .slide .content code {
71+
font-size: 0.8em;
72+
}
73+
#slideshow .slide .content pre code {
74+
font-size: 0.9em;
75+
padding: 15px;
76+
}
77+
.inverse {
78+
background: #464646;
79+
color: #D8DAEB;
80+
text-shadow: 0 0 0px #333;
81+
}
82+
.inverse h1 {
83+
color: #1B9E77;
84+
font-size: 2.5em;
85+
line-height: 1.2em;
86+
}
87+
.inverse h2 {
88+
color: #1B9E77;
89+
font-size: 2.5em;
90+
line-height: 1.2em;
91+
}
92+
.inverse h3 {
93+
color: #D8DAEB;
94+
font-size: 1.5em;
95+
line-height: 1.0em;
96+
}
97+
.inverse ul li:before {
98+
content: "\f080";
99+
font-family: "FontAwesome";
100+
margin-right: 10px;
101+
color: #D95F02;
102+
}
103+
104+
/* Slide-specific styling */
105+
#slide-inverse .footnote {
106+
bottom: 12px;
107+
left: 20px;
108+
}
109+
#slide-how .slides {
110+
font-size: 0.9em;
111+
position: absolute;
112+
top: 151px;
113+
right: 140px;
114+
}
115+
#slide-how .slides h3 {
116+
margin-top: 0.2em;
117+
}
118+
#slide-how .slides .first, #slide-how .slides .second {
119+
padding: 1px 20px;
120+
height: 90px;
121+
width: 120px;
122+
-moz-box-shadow: 0 0 10px #777;
123+
-webkit-box-shadow: 0 0 10px #777;
124+
box-shadow: 0 0 10px #777;
125+
}
126+
#slide-how .slides .first {
127+
background: #fff;
128+
position: absolute;
129+
top: 20%;
130+
left: 20%;
131+
z-index: 1;
132+
}
133+
#slide-how .slides .second {
134+
position: relative;
135+
background: #fff;
136+
z-index: 0;
137+
}
138+
139+
/* Two-column layout */
140+
.left-column {
141+
color: #777;
142+
width: 20%;
143+
height: 92%;
144+
float: left;
145+
}
146+
.left-column h2:last-of-type, .left-column h3:last-child {
147+
color: #000;
148+
}
149+
.right-column {
150+
width: 75%;
151+
float: right;
152+
padding-top: 1em;
153+
}

0-preamble/projectname.png

-30.5 KB
Loading

0-preamble/styles.css~

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/* Thanks Kevin Ushey -- https://github.com/rstudio/webinars/blob/master/2014-04/styles.css */
2+
pre.prettyprint {
3+
width: inherit;
4+
left: 0px !important;
5+
padding: 10px !important;
6+
box-shadow: 1px 1px 5px #9c9c9c !important;
7+
border-style: solid;
8+
border-width: 1px;
9+
border-radius: 5px;
10+
border-color: #ADADAD;
11+
}
12+
pre.prettyprint + pre {
13+
width: inherit;
14+
left: 0px !important;
15+
padding: 10px !important;
16+
box-shadow: 1px 1px 5px #9c9c9c !important;
17+
border-style: solid;
18+
border-width: 1px;
19+
border-radius: 5px;
20+
border-color: #ADADAD;
21+
background-color: #F3F3F3;
22+
}
23+
h1, h2, h3, h4, h5, h6 {
24+
color: #b55 !important;
25+
line-height: 95%;
26+
}

0 commit comments

Comments
 (0)