Tyler Rinker
Tyler Rinker
Is `p_help` misnamed. Maybe it should be called `p_doc` or `p_man` or `p_manual` and `p_help` should be an interface to `help.search` as in: ``` help.search(pattern = "optimisation|optimization", fields = c("title",...
I get no such buid errors locally: https://travis-ci.org/trinker/pacman ``` r Running ‘testthat.R’ ERROR Running the tests in ‘tests/testthat.R’ failed. Last 13 lines of output: 24: getNamespace(ns) 25: tryCatch(loadNamespace(name), error =...
I used this function at work. DOn't know if it makes the cut but documenting it here for now. ``` r #' Package Functions #' #' List the functions from...
`p_install` and `p_load` are verbose. Add a `verbose` argument that suppesses these messages. ``` verbose = getOption("pac_vervose") ``` Defaulting to `TRUE` and allowing the user to set this to `FALSE`...
For `_gh` based functions there is an argument in `devtools::install` ...`upgrade_dependencies = TRUE`. This is an annoyance and often causes conflicts by attempting to delete/reinstall loaded packages. This requires (on...
R installs several recommended packages by default in addition to base packages. It's useful to know these recommended packages as well. Maybe add `recommended = FALSE` arg to `p_base` and...
I think it would be helpful to have `p_load` be able to specify `dependencies` from the `install.packages` function. I'd say the defualt should be `TRUE` where as I think it's...
Someone who uses **pacman**'s `p_load` in a script is doing so for longer terms sustainability (i.e., they can just run the script). This of course requires someone has **pacman** installed....
I thought a possible demonstration vignette could be nice. I'm putting this thread here to document some creative uses of pacman and if we get enough of these we could...
I was creating a unit test for `p_functions` and came across this problem. Not sure if it is even a problem that needs to be addressed. But I would expect...