Each student will be expected to introduce an R-related resource that is relevant to their research interests in a 5 minute presentation during a class session. Most students elect to introduce an R package, but you could also introduce a data source, interesting blog, etc., as long as it’s relevant to the course. If you are aren’t sure, please ask Professor Wilson. The objectives are:
The presentation must include:
There will not be time to actually run any code on-the-fly during your presentation. Instead, use RMarkdown to create a presentation (html) or markdown (md) file so that you can simply display it during class (like the lectures). Then paste your github link into the schedule spreadsheet so we can easily open/view it during class. For the first few weeks, you may simply share your screen and use a powerpoint or other presentation software.
To select a package, I recommend starting with the views on CRAN for a
topic of interest. Then read the narrative in the task view for
something interesting to you and install the package in R with
install.package("packagename")
in R and take a look at what
it can do. Most package functions include sample code that performs a
function. For example, if I was introducing the dplyr
package, I might choose the filter()
function. If you look
in the help you will find a section called “Examples” that you can use
for your example code in your presentation. All you have to do is
copy-paste it from the help into the R console and them summarize what
it’s doing in your presentation. For example, I might demonstrate (from
the filter()
documentation) that the following code will
select all characters from Star Wars that are human.
library(dplyr)
filter(starwars, species == "Human")
## # A tibble: 35 × 14
## name height mass hair_color skin_color eye_color birth_year sex gender
## <chr> <int> <dbl> <chr> <chr> <chr> <dbl> <chr> <chr>
## 1 Luke Sk… 172 77 blond fair blue 19 male mascu…
## 2 Darth V… 202 136 none white yellow 41.9 male mascu…
## 3 Leia Or… 150 49 brown light brown 19 fema… femin…
## 4 Owen La… 178 120 brown, gr… light blue 52 male mascu…
## 5 Beru Wh… 165 75 brown light blue 47 fema… femin…
## 6 Biggs D… 183 84 black light brown 24 male mascu…
## 7 Obi-Wan… 182 77 auburn, w… fair blue-gray 57 male mascu…
## 8 Anakin … 188 84 blond fair blue 41.9 male mascu…
## 9 Wilhuff… 180 NA auburn, g… fair blue 64 male mascu…
## 10 Han Solo 180 80 brown fair brown 29 male mascu…
## # ℹ 25 more rows
## # ℹ 5 more variables: homeworld <chr>, species <chr>, films <list>,
## # vehicles <list>, starships <list>
Here is an example presentation about the ggrepel
package
that was built using this R
Markdown file, which is also
visible on github.