pkgnet
pkgnet copied to clipboard
R package for analyzing other R packages via graph representations of their dependencies
Currently, Function Reporter will find R6 class methods, but nothing special is being done for S4 or Reference classes. We need to figure out: 1. Do we need to do...
Right now, test coverage in `FunctionReporter` does not work with R6 methods. Presumably if Reference Class methods were supported (#197), they would not work either. All of those turn up...
Per discussion in #183 and #181, as well as the proposed change in #198 to unify documentation around the terminology "network reporters", I think we should consider renaming `AbstractGraphReporter` to...
We need to recreate the vignette with specific versions of BOTH `lubridate` and `pkgnet` and update the "A Deeper Look" with instructions utilizing `devtools::install_version()` (or some other more R way...
Currently the graph reporters only have the table of nodes and node measures in their summary view. It would be useful to also include the network measures.
We have had to do a lot of complicated stuff to ensure our unit tests run on Travis but not on CRAN (e.g. #162 ). For this and other reasons,...
Logging an issue where `FunctionReporter` is having trouble parsing some functions, with the suspected cause being related to the use of decorators. Thank you to @Manusreekumar who reported this offline...
Mainly, we should state our recent consensus to use the term "graph" within the package for functions, variables, etc, and "network" with the main customer facing objects.
While reviewing #129, @jameslamb had the idea: > ok next idea related to our ongoing discussion today re #106 .... > > I think we should make reporters have a...
Should we provide an interface for custom weighting of edges and/or nodes? This would allow users more flexibility beyond current pkgnet defaults. Relates to #169.