Uses of Class
org.af.jhlir.tools.RCmdBatchException

Packages that use RCmdBatchException
org.af.jhlir.tools Provides tools for executing R in batch mode, identifying paths and settings. 
 

Uses of RCmdBatchException in org.af.jhlir.tools
 

Methods in org.af.jhlir.tools that throw RCmdBatchException
 List<String> RCmdBatch.exec(List<String> input)
          Excecute a list of R commands in batch mode.
 List<String> RCmdBatch.getInstalledPackages()
          Retrieves all installed R packages on the library paths.
 RPackage RCmdBatch.getInstalledPackInfo(String pack)
          Retrieve information about an installed R package on the current library paths.
 RPackage RCmdBatch.installCranPackage(String pack)
          Installs an R package from CRAN into the defaullt library directory.
 RPackage RCmdBatch.installCranPackage(String pack, File where)
          Installs an R package from CRAN.
 RPackage RCmdBatch.installRForgePackage(String pack)
          Installs an R package from R-Forge into the defaullt library directory.
 RPackage RCmdBatch.installRForgePackage(String pack, File where)
          Installs an R package from R-Forge.
 boolean RCmdBatch.isInstalled(String pack)
          Check whether an R package was installed on the current library paths.
 Map<String,String> RCmdBatch.retrieveInfo(List<String> input, List<String> vars)
          Excecute a list of R commands in batch mode and return the contents of R variables as strings.
 String RCmdBatch.retrieveInfo(List<String> input, String var)
          Excecute a list of R commands in batch mode and return the content of a R variable as a string.
 void RCmdBatch.retrieveRInfo()
          Collects information of the used R engine and stores it in this object.