Skip to content

Commit

Permalink
Reorder columns and add a bit of context
Browse files Browse the repository at this point in the history
  • Loading branch information
llrs committed Jul 19, 2024
1 parent 282dacf commit c3279ef
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dashboard-at-risk.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,14 @@ atrisk[["Reverse Packages"]] <- ifelse(nrevdeps == 0, "", revdeps)
atrisk$Package <- sprintf('<a href="https://cran.r-project.org/package=%s">%s</a>', atrisk$Package, atrisk$Package)
colnames(atrisk) <- tolower(colnames(atrisk))
atrisk <- atrisk[, c("deadline", "package", "version", "maintainer", "links", "reverse packages (n)", "reverse packages", "event")]
atrisk <- atrisk[, c("deadline", "package", "version", "maintainer", "links",
"event", "reverse packages (n)", "reverse packages")]
```

The below table lists `r nrow(atrisk)` R packages that are at risk of being archived[^1] on CRAN, because they have outstanding unresolved issues.

Some of them might have already submitted a new version to fix the issues identified by CRAN (check the event column).

[^1]: When a package is _archived_, the archived version is still
available in the [CRAN archive area] together with all previous
versions.
Expand Down

0 comments on commit c3279ef

Please sign in to comment.