funNames
, will find all calls.funNames
can be a character vector and will only return calls to those functions.Does not determine how many times one function calls another, just a simple binary 0 or 1.
Can get the number of calls with
defs = getFunctionDefs("R")
cfuns = lapply(defs, \(x) getGlobals(x)$functions)
cfuns = unlist(cfuns)
cfuns = cfuns[ cfuns %in% names(defs)]
dsort(table(cfuns))
attr()
or structure()
calls.Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.