Added RcppAlgos to rdeps
Added RcppAlgos to list.
Also made the list one-per-line and alphabetical as the previous comment suggested. I think the suggestion was spot on as when new packages are added, the git diff will clearly show what package was added.
For full transparency, I created the one-per-line-alphabetical vector programmatically:
a <- c("data.table", "S4Vectors", "Hmisc", "BiocParallel", "plotly", "pander", "checkmate", "rmarkdown", "knitr", "Rcpp", "dplyr", "tidyr", "pkgdown", "bit64", "nanotime", "xts", "zoo", "curl", "yaml", "dtplyr", "h2o", "rsparkling", "sparklyr", "hutils", "hutilscpp", "tinytest", "testthat", "inline", "digest", "jsonlite", "R.utils", "anytime", "RcppArmadillo", "RcppEigen", "BH")
cat(paste(sort(a), collapse = '",\n"'))
This will create the following output:
#> anytime",
#> "BH",
#> "BiocParallel",
#> "bit64",
#> .
#> .
#> .
#> "tinytest",
#> "xts",
#> "yaml",
#> "zoo
I then copied and pasted the output into the pkgs vector making sure to close off the " on the first and last packages: anytime & zoo.
Lastly, I added RcppAlgos in the correct alphabetical order.