speedR.init: Initialize speedR (classpath, heap size etc..)

Description Usage Arguments Examples

Description

Initializes speedR. Sets the classpath, heap size, log level etc. User does not need to call this function. It will be called from speedR and speedR.importany.

Usage

1
  speedR.init(maxmemory = NULL,loglevel = "WARNING",debug = FALSE)

Arguments

maxmemory

the maximum allocatable memory in Mb. If speedR is already once started, calling speedR with a different value will have no effect. To change the memory, R must be restarted and speedR has to be called with the new value.

loglevel

Only for developer. Sets the granularity of the logging. Levels are ALL, SEVERE, WARNING, INFO, FINE, FINER, OFF

debug

Only for developer. A logical value indicating wether debuggin should be enabled

Examples

1
2
3
4
## Not run: 
  speedR.init(maxmemory = 1024, loglevel="FINE", debug = FALSE)
  
## End(Not run)

speedR documentation built on May 2, 2019, 6:15 p.m.

Related to speedR.init in speedR...