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
- Host: GitHub
- URL: https://github.com/robitalec/workshops
- Owner: robitalec
- License: gpl-3.0
- Created: 2020-05-10T15:17:44.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T19:50:29.000Z (7 months ago)
- Last Synced: 2024-10-19T17:34:05.430Z (7 months ago)
- Topics: ggplot2, git, r, rdatatable, renv, rmarkdown, targets, xaringan
- Language: HTML
- Homepage: https://robitalec.github.io/workshops/
- Size: 15.6 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
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)
```