knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

summarizetaskview

Way to quickly summarize info from a task view (or other list of packages)

This was inspired by Jonathan Chang's post about downloads for different phylogenetics-related R packages as well as my long term curiosity about how packages in our area. It was also (I now realize after Maƫlle Salmon's tweet about this, inspired by this rOpenSci hackathon project, packagemetrics). It depends on goodpractice (thanks to Auriel Fournier for pointing to that package) and also uses the packages crandb, cranlogs, ggplot2, lubridate, ctv, packagemetrics, and parallel.

library(knitr)
library(summarizetaskview)
all_package_results <- t(sapply(all_packages, summarize_goodness))
kable(all_package_results)
for (package.index in seq_along(all_packages)) {
  #print(paste0("\n## ", (all_packages[[package.index]])$package_info$name), "\n")
  print(suppressWarnings(plot_package_check(all_packages[[package.index]], comparison="ape")))
}


bomeara/summarizetaskview documentation built on May 7, 2019, 10:45 p.m.