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

R语言 maigesPack包 somM()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-26 00:10:54 | 显示全部楼层 |阅读模式
somM(maigesPack)
somM()所属R语言包:maigesPack

                                         Function to do SOM cluster analysis
                                         函数来完成SOM聚类分析

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

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

This is a function to do SOM (Self Organising Maps) clustering analysis for objects of classes maiges, maigesRaw and maigesANOVA. Use the function somMde for objects of class maigesDEcluster.
这是一个函数对象类maiges,maigesRaw和maigesANOVA做高官(自筹备图)聚类分析。使用的功能somMde类maigesDEcluster的对象。


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


somM(data, group=c("C", "R")[1], distance="correlation",
     method="complete", sampleT=NULL, doHier=FALSE, sLabelID="SAMPLE",
     gLabelID="GeneName", rmGenes=NULL, rmSamples=NULL, rmBad=TRUE,
     geneGrp=NULL, path=NULL, ...)



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

参数:data
object of class maigesRaw, maiges, or maigesANOVA.
类对象maigesRaw,maiges或maigesANOVA。


参数:group
character string giving the type of grouping: by rows 'R' or columns 'C' (default).
字符串类型分组:行“R”或列“C”(默认)。


参数:distance
char string giving the type of distance to use. Only two options are available here: 'euclidean' and 'correlation' (default).
char字符串距离使用。只有两个选择,可在这里:“欧几里德和相关(默认)。


参数:method
char string specifying the linkage method for the hierarchical cluster. Possible values are 'ward', 'single', 'complete' (default), 'average', 'mcquitty', 'median' or 'centroid'
char字符串指定联动层次聚类方法。可能的值是病房,单,完成(默认),平均,mcquitty“,”中位数“或”重心“


参数:sampleT
list with 2 vectors. The first one specify the first letter of different sample types to be coloured by distinct colours, that are given in the second vector. If NULL (default) no colour is used.
列出2向量。第一个指定的第一个字母不同类型的样品,是由不同的颜色,在第二个向量的彩色。如果为NULL(默认)没有颜色。


参数:doHier
logical indicating if you want to do the hierarchical branch in the opposite dimension of clustering. Defaults to FALSE.
逻辑表明,如果你想要做的另一维度的聚类分层分支。默认为false。


参数:sLabelID
character string specifying the sample label ID to be used to label the samples.
字符串指定样品的标签标识被用来标记的样品。


参数:gLabelID
character string specifying the gene label ID to be used to label the genes.
字符串指定的基因标签的ID被用来标记基因。


参数:rmGenes
char list specifying genes to be removed.
字符列表指定的基因将被删除。


参数:rmSamples
char list specifying samples to be removed.
字符列表指定的样品将被删除。


参数:rmBad
logical indicating to remove or not bad spots (slot BadSpots in objects of class maiges, maigesRaw or maigesANOVA).
逻辑表示删除或不坏的斑点(插槽BadSpots类对象maiges,maigesRaw或maigesANOVA)。


参数:geneGrp
numerical or character specifying the gene group to be clustered. This is given by the columns of the slot GeneGrps in objects of classes maiges, maigesRaw and maigesANOVA.
数字或字符指定的基因组进行聚类。这是由插槽GeneGrps类的对象列maiges,maigesRaw和maigesANOVA。


参数:path
numerical or character specifying the gene network to be clustered. This is given by the items of the slot Paths in objects of classes maiges, maigesRaw and maigesANOVA.
数字或字符指定的基因网络聚类。这是插槽Paths类的对象的项目给予maiges,maigesRaw和maigesANOVA。


参数:...
additional parameters for som function.
som函数的附加参数。


Details

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

This function implements the SOM clustering method for objects of microarray data defined in this package. The method uses the function som from package som.
此功能实现SOM聚类分析方法,在这个包中定义的微阵列数据的对象。该方法使用功能som索姆包。


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

This function display the heatmaps and return invisibly an object of class som resulted from the function som.
此功能显示热图和无形返回一个类的对象som导致功能som。


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



Gustavo H. Esteves &lt;<a href="mailto:gesteves@vision.ime.usp.br">gesteves@vision.ime.usp.br</a>&gt;




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

som from package som. kmeansM and hierM for displaying k-means and hierarchical clusters, respectively.
som包索姆的。 kmeansM和hierM显示的k-means和层次聚类,分别为。


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


## Loading the dataset[#载入数据集]
data(gastro)

## Doing a SOM cluster with 2 groups using all genes, for maigesRaw class[#做2采用全基因组与SOM的聚类,maigesRaw类]
somM(gastro.raw, rmGenes=c("BLANK","DAP","LYS","PHE", "Q_GENE","THR","TRP"),
     sLabelID="Sample", gLabelID="Name", xdim=2, ydim=1, topol="rect")

## Doing a SOM cluster with 3 groups using all genes, for maigesNorm class[#做3采用全基因组与SOM的聚类,maigesNorm类]
somM(gastro.norm, rmGenes=c("BLANK","DAP","LYS","PHE", "Q_GENE","THR","TRP"),
     sLabelID="Sample", gLabelID="Name", xdim=3, ydim=1, topol="rect")

## Another example with 4 groups[#4组的另一个例子]
somM(gastro.norm, rmGenes=c("BLANK","DAP","LYS","PHE", "Q_GENE","THR","TRP"),
     sLabelID="Sample", gLabelID="Name", xdim=2, ydim=2, topol="rect")

## If you want to use euclidean distance to group genes (or spots), with[#如果你想用欧几里德距离组基因(或点),]
## 3 groups[#3组]
somM(gastro.summ, rmGenes=c("BLANK","DAP","LYS","PHE", "Q_GENE","THR","TRP"),
     sLabelID="Sample", gLabelID="Name", group="R",
     distance="euclidean", xdim=3, ydim=1, topol="rect")

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


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

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-2-4 06:37 , Processed in 0.024635 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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