码迷,mamicode.com
首页 > 编程语言 > 详细

第一个rJava案例

时间:2018-11-03 17:31:17      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:自动   led   out   oid   new   ati   for   turn   result   

 1     public static void main(String[] args) {
 2         // TODO 自动生成的方法存根
 3         
 4         Rengine re = new Rengine(null,false,null);
 5         
 6         if(!Rengine.versionCheck())
 7         {
 8             System.out.println("R version check failed!");
 9             return;
10         }
11         
12         if(!re.waitForR())
13         {
14             return ;
15         }
16         
17         REXP result = re.eval("x<-c(1:10)");
18         
19         System.out.println(result);
20         
21 
22     }

输出:

[INT* (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)]

 

第一个rJava案例

标签:自动   led   out   oid   new   ati   for   turn   result   

原文地址:https://www.cnblogs.com/qianheng/p/9901147.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!