print.daFisher(robCompositions)
print.daFisher()所属R语言包:robCompositions
print method for objects of class daFisher
打印方法的对象的类daFisher
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Provides a print output of objects from class “daFisher” as shown in the examples.
所示实施例中,提供了打印输出的对象从类“daFisher”。
用法----------Usage----------
## S3 method for class 'daFisher'
print(x, ...)
参数----------Arguments----------
参数:x
object of class "daFisher"
对象类的daFisher“
参数:...
...
...
Details
详细信息----------Details----------
Have a look at the example, it's self-explaining.
有一个看一个例子,它的自我解释。
值----------Value----------
nothing
无
(作者)----------Author(s)----------
Matthias Templ
参见----------See Also----------
daFisher
daFisher
实例----------Examples----------
require(MASS)
x1 <- mvrnorm(20,c(0,0,0),diag(3))
x2 <- mvrnorm(30,c(3,0,0),diag(3))
x3 <- mvrnorm(40,c(0,3,0),diag(3))
X <- rbind(x1,x2,x3)
grp=c(rep(1,20),rep(2,30),rep(3,40))
d1 <- daFisher(X,grp=grp,method="classical",coda=FALSE)
d2 <- daFisher(X,grp=grp,method="robust",coda=FALSE)
d2
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|