Files
awesome-quant/projects.qmd
T

25 lines
622 B
Plaintext
Raw Normal View History

2023-07-23 16:56:22 -03:00
---
title: "Projects"
format:
html:
df-print: kable
---
Compilation of projects providing access to the date of last commit or publication date.
```{r message=FALSE, warning=FALSE, echo=FALSE, table.cap="Projects"}
#| label: tbl-projects
#| tbl-cap: Projects
#| results: asis
library(tidyverse)
df <- readr::read_csv("projects.csv")
dt <- df |>
filter(!is.na(last_commit)) |>
2023-07-24 05:53:31 -03:00
mutate(project=paste0("<a href='", url, "'>", project, "</a>")) |>
2023-07-23 16:56:22 -03:00
select(project, section, last_commit) |>
arrange(desc(last_commit), section)
2023-07-24 05:53:31 -03:00
htmltools::tagList(DT::datatable(dt, list(pageLength = 50), escape = FALSE))
2023-07-23 16:56:22 -03:00
```