-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.qmd
37 lines (29 loc) · 994 Bytes
/
README.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
format: gfm
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
echo = FALSE,
warning = FALSE,
message = FALSE
)
library(tidyverse)
```
# SSA Vic & Tas
[This repo](https://github.com/StatSocAus/vic) contains materials to host the intro HTML slides used in the events of the Victorian and Tasmanian Branch of Statistical Society of Australia (SSA Vic & Tas).
For more information about SSA Vic, please see the following.
* Official website: https://www.statsoc.org.au/Victoria
* [Meetup](https://www.meetup.com/en-AU/Statistical-Society-of-Australia-Victorian-Branch/)
* Twitter: [SSAVictoria](https://twitter.com/SSAVictoria)
## Intro slides
<ul>
```{r, results="asis"}
baseurl <- "https://statsocaus.github.io/vic/intro/"
link <- fs::dir_ls("intro") %>%
str_subset(".html$") %>%
basename()
glue::glue("<li><a href='{baseurl}{link}'>{gsub('.html', '', link)}</a></li>") %>%
cat()
```
</ul>