Skip to content

Commit fb2620e

Browse files
committedJul 6, 2016
working on ggbio and shiny apps page
1 parent be255b8 commit fb2620e

File tree

11 files changed

+535
-1377
lines changed

11 files changed

+535
-1377
lines changed
 

‎0-preamble/index.Rmd

+26
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,32 @@ Create a project for this workshop, in the directory where you downloaded the fi
102102
- 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.
103103
- R Markdown documents are fully reproducible (they can be automatically regenerated whenever underlying R code or data changes).
104104

105+
## Installing packages
106+
107+
From CRAN
108+
109+
```{r eval=FALSE}
110+
install.packages("ggenealogy")
111+
```
112+
113+
##
114+
115+
From bioconductor
116+
117+
```{r eval=FALSE}
118+
source("https://bioconductor.org/biocLite.R")
119+
biocLite("ggbio")
120+
```
121+
122+
##
123+
124+
From github repos
125+
126+
```{r eval=FALSE}
127+
devtools::install_github("heike/gglogo")
128+
devtools::install_github("haleyjeppson/ggmosaic")
129+
```
130+
105131
## Resources
106132

107133

‎0-preamble/index.html

+22-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212

13-
<meta name="date" content="2016-06-26" />
13+
<meta name="date" content="2016-07-06" />
1414

1515
<meta name="viewport" content="width=device-width, initial-scale=1">
1616
<meta name="apple-mobile-web-app-capable" content="yes">
@@ -91,7 +91,7 @@
9191
<h1 data-config-title><!-- populated from slide_config.json --></h1>
9292
<h2 data-config-subtitle><!-- populated from slide_config.json --></h2>
9393
<p data-config-presenter><!-- populated from slide_config.json --></p>
94-
<p style="margin-top: 6px; margin-left: -2px;">2016-06-26</p>
94+
<p style="margin-top: 6px; margin-left: -2px;">2016-07-06</p>
9595
</hgroup>
9696
</slide>
9797

@@ -190,6 +190,26 @@ <h2 data-config-subtitle><!-- populated from slide_config.json --></h2>
190190
<li><p>R Markdown documents are fully reproducible (they can be automatically regenerated whenever underlying R code or data changes).</p></li>
191191
</ul>
192192

193+
</article></slide><slide class=''><hgroup><h2>Installing packages</h2></hgroup><article id="installing-packages">
194+
195+
<p>From CRAN</p>
196+
197+
<pre class = 'prettyprint lang-r'>install.packages(&quot;ggenealogy&quot;)</pre>
198+
199+
</article></slide><slide class=''><hgroup><h2></h2></hgroup><article id="section">
200+
201+
<p>From bioconductor</p>
202+
203+
<pre class = 'prettyprint lang-r'>source(&quot;https://bioconductor.org/biocLite.R&quot;)
204+
biocLite(&quot;ggbio&quot;)</pre>
205+
206+
</article></slide><slide class=''><hgroup><h2></h2></hgroup><article id="section-1">
207+
208+
<p>From github repos</p>
209+
210+
<pre class = 'prettyprint lang-r'>devtools::install_github(&quot;heike/gglogo&quot;)
211+
devtools::install_github(&quot;haleyjeppson/ggmosaic&quot;)</pre>
212+
193213
</article></slide><slide class=''><hgroup><h2>Resources</h2></hgroup><article id="resources">
194214

195215
<ul>

0 commit comments

Comments
 (0)
Please sign in to comment.