speedR: speedR: An R-package for interactive data import, filtering...

Description Usage Arguments Details References Examples

Description

Starts the speedR GUI window.

Usage

1
  speedR(maxmemory=NULL,...)

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.

...

Other optional parameters sent to speedR.init like debugging and log level.

Details

speedR depends on rJava and iplots packages. To install these packages please call install.packages(c("rJava","iplots")). In case of an "OutOfMemoryError", please increase the memory by setting the maxmemory parameter to a higher value. Note that R must be restarted. Following examples can be used as an indicator for how much the speedR can approximately consume memory:

512 Mb : 10 columns, 750000 rows 1024 Mb: 20 columns, 750000 rows or 10 columns 1500000 rows

Note that memory consume depends not only on the columns and rows number, but it depends on the content of each cell too (i.e. char count).

References

Ilhami Visne, Ahmet Yildiz, Erkan Dilaveroglu, Klemens Vierlinger, Christa Noehammer, Friedrich Leisch, Albert Kriegner (2012). speedR: An R Package for Interactive Data Import, Filtering and Ready-to-Use Code Generation. Journal of Statistical Software, 51(2), 1–12. http://www.jstatsoft.org/v51/i02/.

Examples

1
2
3
4
5
## Not run: 
  speedR() #calls speedR with default memory value: on Windows 70
  speedR(maxmemory = 1024) # start speedR with 1024 Mb memory
  
## End(Not run)

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

Related to speedR in speedR...