找回密码
 注册
查看: 1370|回复: 0

R语言:uniquecombs()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-16 19:03:43 | 显示全部楼层 |阅读模式
uniquecombs(mgcv)
uniquecombs()所属R语言包:mgcv

                                        find the unique rows in a matrix
                                         在矩阵中寻找独特的行

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

This routine returns a matrix containing all the unique rows of the matrix supplied as its argument. That is, all the duplicate rows are stripped out. Note that the ordering of the rows on exit is not the same as on entry. It also returns an index attribute for relating the result back  to the original matrix.
这个例程返回一个包含所有作为它的参数提供独特的矩阵行矩阵。也就是说,所有重复行剥离出来。请注意,退出行的顺序是不相同入境。它也返回相关的结果返回到原来的矩阵索引属性。


用法----------Usage----------


uniquecombs(x)



参数----------Arguments----------

参数:x
is an R matrix (numeric)  
是R矩阵(数字)


Details

详情----------Details----------

Models with more parameters than unique combinations of covariates are not identifiable. This routine provides a means of evaluating the number of unique combinations of coavariates in a model. The routine calls compiled C code.
比协变量的独特组合多个参数的模型是无法识别。这个程序提供了一个评估组合模型coavariates独特的手段。例程调用编译的C代码。


值----------Value----------

A matrix consisting of the unique rows of x (in arbitrary order).
矩阵x(任意顺序)的独特行组成的。

The matrix has an "index" attribute. index[i] gives the row of the returned  matrix that contains row i of the original matrix.
矩阵"index"属性。 index[i]给出了返回的矩阵包含我行的原始矩阵的行。


作者(S)----------Author(s)----------


Simon N. Wood <a href="mailto:simon.wood@r-project.org">simon.wood@r-project.org</a>



参见----------See Also----------

unique can do the same thing, including for non-numeric matrices, but more
unique可以做同样的事情,包括非数字矩阵,但更多的


举例----------Examples----------


X<-matrix(c(1,2,3,1,2,3,4,5,6,1,3,2,4,5,6,1,1,1),6,3,byrow=TRUE)
print(X)
Xu <- uniquecombs(X);Xu
ind <- attr(Xu,"index")
## find the value for row 3 of the original from Xu[#找到许值从原来的3行。]
Xu[ind[3],];X[3,]

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-1-24 05:25 , Processed in 0.030000 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表