Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upMaybe support LinkingTo as well? #1
Comments
|
Nice. Thank you. Can your extractors also combine, ie do what CRAN does and use
all of which are hard dependencies? |
|
Yes. I wrote the plot method for summary to be totally agnostic to the statistic to be bar-plotted. So, (using the development version for now) you can do
Is this what you are after? |
|
Yes. Subsetting according to base is already in my todo for next release with moderate priority.
Opened a new issue on this #2.
|
|
Done in #2 |


When I build (much simpler) dependencies via the tools package, I follow their usual pattern of (and here I quote from the help for
tools::package_dependencies)and tend to pick either 'all' or 'most' -- or just stick with the default value of the more explicit narrower set of
c("Depends", "Imports", "LinkingTo").For packages like Rcpp and BH that matters a lot as most of the 'edges' in the graph are compile-time via LinkingTo, rather than via depended-upon or imported R code.
That said, awesome looking package :) This will be nice to have around.