James Lamb
James Lamb
I'm unsure of the exact issue, but the Function Network (produced `FunctionReporter`) is broken for some packages. To reproduce: ```r pkg_name
This is not a fully-formed idea, but leaving here to start a discussion. If `pkgnet` is supposed to help answer the question "should I add / remove this dependency?", I...
In R, it is possible to add version floors by specifying something like this in a package's `DESCRIPTION` file: ``` Imports: data.table (>= 0.10.0) ``` This information should be added...
I noticed tonight that the Dependency Network dropdown looks like this:  The sort order is: * All packages starting with a capital letter (sorted alphabetically) * All packages starting...
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,...
Currently, in `FunctionReporter$extract_network()` we have logic like this: ``` if (!is.null(private$pkg_path)){ private$calculate_test_coverage() } ``` This feels kind of awkward...instead of a user saying "add test coverage", we allow you to...
Currently in `R/AbstractGraphReporter.R`, we hardcode the color to use when plotting edges: ``` plotDTedges[, color := '#848484'] ``` To complete this issue, change `pkgnet` to allow people to configure this....
Now that datastorm-open/visNetwork#290 has been addressed, we do not need this protection in `AbstractGraphReporter`: ``` if (length(colorFieldValues) > 1) { g
Right now, the references section looks like this: I propose that we should: * hide the `Abstract*` completely * Put the two functions together in a section called "Functions" *...
In using `pip-licenses`, I've found that some packages which do non-standard things with their license information are categorized as UNKNOWN even when they use mainstream OSS licenses. PyPi exposes a...