mirror of
https://github.com/wilsonfreitas/awesome-quant.git
synced 2026-08-18 14:28:06 +00:00
new structure
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
---
|
||||
title: "Projects"
|
||||
format:
|
||||
html:
|
||||
df-print: kable
|
||||
include-in-header:
|
||||
- text: |
|
||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7994446359957143"
|
||||
crossorigin="anonymous"></script>
|
||||
---
|
||||
|
||||
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)) |>
|
||||
mutate(project=paste0("<a href='", url, "'>", project, "</a>")) |>
|
||||
select(project, section, last_commit) |>
|
||||
arrange(desc(last_commit), section)
|
||||
htmltools::tagList(DT::datatable(dt, list(pageLength = 50), escape = FALSE))
|
||||
```
|
||||
Reference in New Issue
Block a user