We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4691e2 commit b13b046Copy full SHA for b13b046
index.qmd
@@ -45,6 +45,15 @@ et_pkgs_cchecks <- et_cran_pkgs |>
45
dplyr::mutate(dplyr::across(everything(), ~ ifelse(is.na(.x), 0, .x)))
46
```
47
48
+```{r}
49
+crandb <- tools::CRAN_package_db() |>
50
+ dplyr::select(package = Package, Deadline) |>
51
+ tidyr::replace_na(list(Deadline = ""))
52
+
53
+et_pkgs_cchecks <- et_pkgs_cchecks |>
54
+ dplyr::left_join(crandb)
55
+```
56
57
```{r, results='asis'}
58
et_pkgs_cchecks |>
59
dplyr::mutate(
0 commit comments