Permute(GraphAlignment)
Permute()所属R语言包:GraphAlignment
Permute rows and columns of a matrix
置位的行和列矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Permute rows and columns of the input matrix.
置位输入矩阵的行和列。
用法----------Usage----------
Permute(m, p, invertp=FALSE)
参数----------Arguments----------
参数:m
matrix
矩阵
参数:p
permutation vector
置换向量
参数:invertp
apply inverse permutation
应用逆置换
Details
详情----------Details----------
This function permutes rows and columns of a matrix using the specified permutation vector. The inverse of the permutation will be applied if the invertp argument is set to TRUE.
此功能置换矩阵的行和列使用指定的置换向量。如果invertp参数设置为TRUE,将用于置换的逆。
值----------Value----------
The return value is the row- and columnwise Permutation of the elements of the input matrix, so Permute(m, p)[i, j] is equal to m[p[i], p[j]].
返回值是该行的输入矩阵的元素按列排列,因此表,改变(M,P)[I,J]是等于为m [P [I],P [J]。
作者(S)----------Author(s)----------
Joern P. Meier, Michal Kolar, Ville Mustonen, Michael Laessig, and Johannes Berg
举例----------Examples----------
example <- GenerateExample(10, 10, 1, 0.5, TRUE, 4)
b <- example$b
p <- rank(rnorm(10))
Permute(b, p, TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|