Skip to content

Commit 7aa72e2

Browse files
committed
add some finishing touches for tmrw
1 parent 50ec8c1 commit 7aa72e2

File tree

4 files changed

+40
-39
lines changed

4 files changed

+40
-39
lines changed
3.21 MB
Loading
7.73 KB
Loading

rhodyrstats-R-user-group/rhodyrstats-r-user-group-slides.Rmd

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ library(tidyr)
4343
- Computer-Aided Design
4444

4545
- **My Engineering Path**:
46-
- Manufacturing Engineer ➡️ R&D Intern ➡️️ R&D Engineering Technician ➡️ (...) ➡️️ ️Data Scientist
46+
- Manufacturing Engineer ➡️ R&D Intern ➡️️ R&D Engineering Technician ➡️ (...) ➡️️ Data Scientist
4747

4848
## I learned about data science from the internet
4949

@@ -97,7 +97,7 @@ library(tidyr)
9797

9898
<img src="img/moocs.jpg" style="position: center; right: 0; width: 300px"></img>
9999

100-
## Cold emailing does work!
100+
## Asking strangers for help through cold emailing?!
101101

102102
- Have you ever wanted advice but didn't know who to contact?
103103
- Email someone in the field that you are interested in and ask about the path they took and what research they are engaged in!
@@ -106,30 +106,33 @@ library(tidyr)
106106

107107
![](img/youve-got-mail.jpg)
108108

109-
## My first exposure to R programming was through Shiny
109+
## My first exposure to R programming was through `shiny` in 2014
110110

111-
- Shiny is a web application framework for R and is quite different from R, syntactically
112-
- In 2014, shiny also did not have all of the features it has today
113-
- Some of the usual R programming headaches did come up such as `stringsAsFactors = FALSE`
114-
- It was a mixture of learning about Bioinformatics, gene expression data, bioconductor, and *designing a data product for a non-technical user*
111+
- It was a mixture of learning about Bioinformatics, gene expression data, bioconductor, and *designing a data product for a non-technical user* with *Shiny*.
112+
- Shiny is a web application framework for R
113+
- Some of the usual R programming headaches came up such as `stringsAsFactors = FALSE`
115114
- Gene expression data is not like the `iris` dataset
116115

116+
<img src="img/shiny-sticker.png" style="position: center; right: 3"></img>
117+
117118
## Sometimes unpaid volunteer work does pays off...
118119

119-
- [Google Summer of Code](https://summerofcode.withgoogle.com/) is a global program for undergraduates and graduate students to get funding from **Google** to work on an open source project for the Summer!
120+
- [Google Summer of Code (GSoC)](https://summerofcode.withgoogle.com/) is a global program for undergraduates and graduate students to get funding from **Google** to work on an open source project for the Summer!
120121
- What it provides:
121122
- Opportunity to gain more programming skills
122123
- Interface with the open source community
123124
- [Archival hosting](https://www.google-melange.com/archive/gsoc/2015/orgs/rproject/projects/jasdumas.html) of your abstract and code
124125
- Nobody talks about this heavily, but it does get you a *lifetime referral* for positions at Google!
125126

127+
![](img/oss-monkey-computing.gif)
128+
126129
## Some of the results from participating in the Google Summer of Code
127130

128131
- A first author publication in the [*Bioinformatics Journal*](https://academic.oup.com/bioinformatics/article-abstract/32/23/3679/2525634/shinyGEO-a-web-based-application-for-analyzing)!
129132

130-
- An web application (currently being refactored to submit to [**rOpenSci**](https://ropensci.org/))
133+
- A web application (currently being refactored to submit to [**rOpenSci**](https://ropensci.org/))
131134

132-
<img src="img/shinyGEO2.jpg" alt="ending slide" style="position: center; width: 700px;"/>
135+
<img src="img/shinyGEO2.jpg" style="position: center; width: 800px;"/>
133136

134137
## How to make a connection to the R community
135138

@@ -157,7 +160,7 @@ library(tidyr)
157160
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">Does anyone want to hire me to spice up their data with science using <a href="https://twitter.com/hashtag/rstats?src=hash">#rstats</a>? <br><br>I&#39;m looking for a job! 😬</p>&mdash; Jasmine Dumas (@jasdumas) <a href="https://twitter.com/jasdumas/status/713118293515759616">March 24, 2016</a></blockquote>
158161
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
159162

160-
## Every data science path is unique...
163+
## Every data science path is unique!
161164

162165
**tl;dr: I love learning in a structured setting but I can learn best from doing applied data science in the workplace.**
163166

@@ -178,11 +181,11 @@ library(tidyr)
178181

179182
## Advice that I wish I heard 2.5 years ago from myself:
180183

181-
<h2 style='color:#ffffff; background-color:#009fe1;'>Ultimately, technical skills, passion, and curiosity are key attributes of a productive data scientist and essential to collaborating with others!</h2>
184+
<h1 style='color:#ffffff; background-color:#009fe1;'>Ultimately, technical skills (including statistical thinking), passion, and curiosity are key attributes of a productive data scientist and essential to collaborating with others!</h1>
182185

183186
## Alright, on to the fun stuff ... R:
184187

185-
<h2 style='color:#ffffff; background-color:#009fe1;'>R packages are a great way to combine code & documentation to share with others</h2>
188+
<h1 style='color:#ffffff; background-color:#009fe1;'>R packages are a great way to combine code & documentation to share with others</h1>
186189

187190
## What even is, beer analytics?
188191

@@ -229,7 +232,6 @@ ggplot(., aes(x=Year, y=pounds, color=materials)) +
229232
theme_bw() +
230233
theme(axis.ticks = element_blank(), axis.text.x = element_blank()) +
231234
facet_wrap(~ Month, nrow = 1)
232-
233235
```
234236

235237
## What even is, a landing page?
@@ -241,15 +243,15 @@ ggplot(., aes(x=Year, y=pounds, color=materials)) +
241243
<img src="img/borat.gif" style="position: center; top: 1; width: 600px;"></img>
242244

243245
## An example of a landing home page
246+
244247
<img src="img/Meetup.com-homepage-screenshot.jpg" alt="wiki dash" style="position: center; width: 1000px;"/>
245248

246249
## Make landing pages for `shiny` apps with `shinyLP`
247250

248251
- Adds **even more Bootstrap** components to make landing home pages for Shiny
249252
- available on [CRAN](https://cran.r-project.org/web/packages/shinyLP/index.html) and [Github](https://github.com/jasdumas/shinyLP)
250253

251-
252-
<img src="img/example1.jpg" alt="ending slide" style="position: center; width: 700px;"/>
254+
<img src="img/example1.jpg" style="position: center; width: 1000px;"/>
253255

254256
## The End
255257

rhodyrstats-R-user-group/rhodyrstats-r-user-group-slides.html

Lines changed: 22 additions & 23 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)