NEWS.md
DirectedGraph class now slot into the pkg_graph field of network reporters. These objects encapsulate the graph modeling of networks and have a more expressive set of methods for analysis. Check out the full documentation with ?DirectedGraph. (#181)
pkg_graph$node_measures and pkg_graph$graph_measures to respectively calculate node-level and graph-level measures.pkg_graph$default_node_measures and pkg_graph$default_graph_measures to see the measures calculated by default.pkg_graph$available_node_measures and pkg_graph$available_graph_measures to see the all supported measures.pkg_graph$igraph.outSubgraphSize and inSubgraphSize have been replaced with numRecursiveDeps and numRecursiveRevDeps, which are the former minus one (by not counting the node itself). (#191, #181)DirectedGraph feature, reporters’ pkg_graph field now contain an object of new DirectedGraph class. Previously it held an igraph object. This igraph object is now instead available at pkg_graph$igraph. See NEW FEATURES section for other details about the new pkg_graph object. (#181)calculate_default_measures on reporters. (#181)
CreatePackageReport will now only show default measures.CreatePackageReport now prints the version of pkgnet used at the bottom. (#181)grep("^layout_\\S", getNamespaceExports("igraph"), value = TRUE) to see valid options. (#143)FunctionReporter now utilizes graphopt layout by default. (#143)FunctionReporter now supports non-exported functions and R6 class methods. (#123, #128)milne created for unit testing of InheritanceReporter and R6 method support in FunctionReporter. (#128, #129)