pacman icon indicating copy to clipboard operation
pacman copied to clipboard

Add recommended arg (T/F) to p_base

Open trinker opened this issue 8 years ago • 1 comments

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 use the following approach to see recommended:

x <- installed.packages() 
x[x[,"Priority"] %in% c("base","recommended"), c("Package", "Priority")] 

trinker avatar Sep 02 '16 13:09 trinker

Couldn't hurt. Is there a use case you have in mind for this functionality?

Dasonk avatar Sep 13 '16 16:09 Dasonk