Changes between Version 9 and Version 10 of udg/ecoms/RPackage/prerequisites
- Timestamp:
- May 6, 2015 11:15:41 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
udg/ecoms/RPackage/prerequisites
v9 v10 52 52 53 53 For Windows 7, you can find some quick advice on how to get up and running with R + rJava [http://stackoverflow.com/questions/7019912/using-the-rjava-package-on-win7-64-bit-with-r/7604469#7604469 at this link] 54 55 56 57 58 = Find out the java version used by R 59 60 Once `rJava` is installed, you may want to know the characteristics of the java version used by R: 61 62 {{{#!text/R 63 library(rJava) 64 .jinit() 65 [1] 0 66 jvm <- .jnew("java.lang.System") 67 jvm.props <- jvm$getProperties()$toString() 68 strsplit(gsub("\\{(.*)}", "\\1", jvm.props), ", ")[[1]] 69 70 }}}