mat.mean(rama)
mat.mean()所属R语言包:rama
Compute the mean and standard deviation of each row in a data matrix
计算数据矩阵的每一行的均值和标准差
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function computes the mean and standard deviation of each row in a data matrix. The source code is written in C. As a consequence, the computation is quite fast.
此函数计算数据矩阵中的每一行的均值和标准差。计算的源代码是用C语言编写,因此,是相当快的。
用法----------Usage----------
参数----------Arguments----------
参数:data
The data matrix.
数据矩阵。
值----------Value----------
A matrix, the first columns contain the means, the second the standard deviations.
A矩阵,第一列包含的手段,第二个标准偏差。
作者(S)----------Author(s)----------
Raphael Gottardo
参见----------See Also----------
mean,sd
mean,sd
举例----------Examples----------
data(hiv)
sample1<-hiv[,1:4]
ms1<-mat.mean(sample1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|