Skip to content

Z Meeting notes, 2021 03 19

Tim Treis edited this page Mar 19, 2021 · 15 revisions

Notes

  • Testing for ggplot warnings
  • default loading of library(survival) [Rebecca/Steven]
    • We will load survival and go for the easy route for now
    • @Steven -> Open issue to document us being inconsistent there. We will fix this in a later stage
  • Go through PR [All]
  • plot() overwriting base::plot
    • We don't really use it ourselves
    • Other good verbs are already taken
    • We stick with plot() for now, user test and then maybe change
  • Plots in the vignette don't look nice. Why?
  • Document necessary version for important packages @everyone
Author R dplyr survival tidyr ggplot2 gt
@timtreis 4.0.3 1.0.4 3.2.7 1.1.2 3.3.3 0.2.2
packages <- c("dplyr", "survival", "tidyr", "ggplot2", "gt")
if (TRUE) {
  
  cat(paste0(R.Version()$version.string, "\n"))
  
  for (p in packages) {
  
    cat(paste(p, packageVersion(p), "\n"))
  
  }

}