makejava(Runiversal)
makejava()所属R语言包:Runiversal
A wrapper function for converting R objects to Java style variables.
包装器函数为R对象转换成Java风格的变量。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function converts R objects to Java arrays. If R object is numeric than the Java object is double[]. Otherwise the Java object will be String[].
此功能将R对象到Java数组。 ,如果R对象是数字比Java对象是双[]。否则的Java对象是String []。
用法----------Usage----------
makejava(obj, name = "")
参数----------Arguments----------
参数:obj
R object that to be converted to Java style variables.
R对象被转换为Java风格的变量。
参数:name
New variable name for created Java style variable. If R object is only a vector, a name have to be given. If R object is a list, name is inoperative.
新创建的Java风格的变量的变量名。如果R对象仅仅是一个向量,一个名称必须给。如果R对象是一个列表,名称是无效的。
Details
详细信息----------Details----------
This function returns interpretable code for most frequently used dynamic Java interpreters such as Bean Shell. So this function can be used for using R codes in Java without JNI. This is an inefficient way to use R in Java but implementation is quite easy and platform independent.
这个函数返回可解释代码为最常用的动态Java解释器,如绿豆壳。因此,此功能可用于使用R代码在Java中没有JNI。使用R在Java中,这是一个低效率的方式,但实施是很容易的与平台无关的。
值----------Value----------
Returns interpretable code for Bean Shell and Java of R objects.
返回可解释代码豆壳和Java的R对象。
注意----------Note----------
This function generates interpretable code for Java. For other languages you can use makexml to convert R objects to XML code. XML is readable for all of the programming languages.
这个函数生成代码的Java解释。对于其他语言您可以使用makexml的R对象转换XML代码。 XML是可读的,所有的编程语言。
(作者)----------Author(s)----------
Mehmet Hakan Satman
参考文献----------References----------
参见----------See Also----------
makexml
makexml
实例----------Examples----------
#Shows the linear regression results as Java style variables[显示Java风格变量的线性回归结果]
y<-rnorm(10)
x<-1:10
ols<-lm(y~x)
cat(makejava(ols))
#Shows only the residuals as double[] Residuals=new double[]{.....};[只显示残差双[]残差=新的双[] {...};]
cat(makejava(ols$residuals, "Residuals"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|