rSoniaLoc {rSoNIA} | R Documentation |
Searches the library trees from .libPaths() to discover the path to the directory where SoNIA is installed. Used by installer scripts, and also as the default path when lanuching sonia. Used as a kludge for specifying a dependency on a java library.
rSoniaLoc()
returns a string giving the path the the rSoNIA/java directory
skyebend@skyeome.net
~put references to the literature/web site here ~
##---- Should be DIRECTLY executable !! ---- ##-- ==> Define data, use random, ##-- or do help(data=index) for the standard data sets. ## The function is currently defined as function () { for (lib in .libPaths()) { if (sum(.packages(all = TRUE, lib.loc = lib) == "rSoNIA")) { return(paste(lib, "rSoNIA", "java", "", sep = "/")) } } return(NULL) }