An open API service indexing awesome lists of open source software.

https://github.com/robitalec/workshops

Workshop slides and resources
https://github.com/robitalec/workshops

ggplot2 git r rdatatable renv rmarkdown targets xaringan

Last synced: about 1 month ago
JSON representation

Workshop slides and resources

Awesome Lists containing this project

README

        

---
title: Workshops
author: Alec L. Robitaille
date: "`r Sys.Date()`"
output: github_document
---

```{r, echo = FALSE}
suppressPackageStartupMessages(library(data.table))
DT <- fread('workshops.csv', header = TRUE)
setnames(DT, 'V1', ' ')
setorder(DT, -Date)

DT[, Resources := paste0('[', basename(Resources), ']', '(', Resources, ')')]
DT[, Slides := paste0('[', basename(Slides), ']', '(', Slides, ')')]

knitr::kable(DT)
```