Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jemus42/talks
Collection of talks. Slides and the likes.
https://github.com/jemus42/talks
Last synced: 15 days ago
JSON representation
Collection of talks. Slides and the likes.
- Host: GitHub
- URL: https://github.com/jemus42/talks
- Owner: jemus42
- Created: 2021-05-13T12:34:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-29T11:37:38.000Z (4 months ago)
- Last Synced: 2024-10-11T18:18:32.778Z (about 1 month ago)
- Language: HTML
- Homepage: https://slides.lukasburk.de/
- Size: 27.8 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
always_allow_html: true
---```{r, include = FALSE}
knitr::opts_chunk$set(
echo = FALSE,
collapse = TRUE,
comment = "#>"
)
```# Slide Dump
Talks, pitches, journal club presentations, almost organized. But not really, let's be honest.
```{r}
tibble::tribble(
~year, ~short, ~desc, ~link,
2024, "surv-bench-statcomp", "StatComp: Survival Benchmark", "2024/07-statcomp/survbench.pdf",
# 2024, "BioWiMium", "Demsar 2006", "2024/05-biowimium/index.pdf",
2024, "surv-bench-bioc", "Biometric Colloquium 2024: Survival Benchmark", "2024/02-biocoll/01MAR24_Lukas_Burk.pdf",
2023, "CooPeR", "CEN 2023: CooPeR", "2023/09-cooper/07SEP23_Lukas_Burk.pdf"
# 2023, "BioWiMium", "Generating High-Dimensional Competing Risk Survival Settings", "2023/06-wimium/cr.pdf",
# 2023, "CooPeR", "fwelnet for survival w/ competing risks, again, but... more. And renamed.", "2023/05-cooper/CooPeR.html",
# 2022, "aorsf", "ORSF, but A (survival focus group)", "2022/aorsf/aorsf.html",
# 2022, "xai-bench", "XAI-Bench / Journal Club BIPS/SLDS", "2022/imljc-xaibench/index.html",
# 2022, "fwelnet-cr", "fwelnet for survival outcomes with competing risks (idea/pitch)", "2022/fwelnet-cr/fwelnet-cr.html"
) |>
dplyr::mutate(
desc = glue::glue("{desc}")
) |>
dplyr::select(-link) |>
kableExtra::kbl(col.names = c("Year", "Topic", "Context"), escape = FALSE) |>
kableExtra::kable_styling(full_width = TRUE)
```