pkgstats_summary | R Documentation |
pkgstats
to summary statistics onlyCondense the output of pkgstats
to summary statistics only
pkgstats_summary(s = NULL)
s |
Output of pkgstats, containing full statistical data on one
package. Default of |
Summarised version of s
, as a single row of a standardised
data.frame
object
Variable names in the summary object use the following abbreviations:
"loc" = Lines-of-Code
"fn" = Function
"n_fns" = Number of functions
"npars" = Number of parameters
"doclines" = Number of documentation lines
"nedges" = Number of edges in function call network, as a count of
unique edges, which may be less than the size of the network
object returned by pkgstats, because that may include multiple calls
between identical function pairs.
"n_clusters" = Number of connected clusters within the function call network.
"centrality" used as a prefix for several statistics, along with "dir" or "undir" for centrality calculated on networks respectively constructed with directed or undirected edges; "mn" or "md" for respective measures of mean or median centrality, and "no0" for measures excluding edges with zero centrality.
Other stats:
desc_stats()
,
loc_stats()
,
pkgstats()
,
rd_stats()
f <- system.file ("extdata", "pkgstats_9.9.tar.gz", package = "pkgstats")
## Not run:
p <- pkgstats (f)
s <- pkgstats_summary (p)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.