bottomUpRecursiveDriver {NoviceDeveloperResources2} | R Documentation |
bottomUpRecursiveDriver
Description
compute a list of all the packages that either directly or indirectly import the original query packages
Usage
bottomUpRecursiveDriver(l, p0, verbose)
Arguments
l |
return value of retrieveNamespace() |
p0 |
list of those packages whose R code has been modified by the developer |
verbose |
if TRUE print line indicating the recursion level |
Value
returns a list of all the packages that either directly or indirectly imports the original query packages
Examples
## Not run:
# you need to specify dir, packs that are on your own computer !!
dir1<-"~/personal/hearts/hearts_card_game_bayesian_inference"
dir2<-"packages/inference_packages/inference_packages/"
packs<-c("cardUtils","clickableImageMap","editDriver",
"heartsCIM","iterationDriver","logos","playOneTrick",
"playWholeHandDriverPassParams","probTab","relaxDriver")
l<-retrieveNamespace(sprintf("%s/%s",dir1,dir2),packs)
burd<-bottomUpRecursiveDriver(l,c("iterationDriver"),TRUE)
## End(Not run)
[Package NoviceDeveloperResources2 version 1.1.0 Index]