rowScales(scrime)
rowScales()所属R语言包:scrime
Rowwise Scaling
Rowwise缩放
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Scales each row of a matrix such that the values in this row have zero mean and a standard deviation of 1.
秤,使得该行中的值具有零均值和标准偏差为1的矩阵的每一行。
用法----------Usage----------
rowScales(X, add.stats = FALSE)
参数----------Arguments----------
参数:X
a numeric matrix whose rows should be scaled. Missing values are allowed.
一个数字矩阵,其行应扩大。遗漏值是允许的。
参数:add.stats
should the rowwise means and standard deviations of X be returned?
应的rowwise的手段和标准偏差X回来了吗?
值----------Value----------
If add.stats = FALSE, a matrix of the same dimensions as X with a rowwise mean of zero and a rowwise standard deviation of 1. If add.stats = TRUE, a list containing this matrix and the rowwise means and standard deviations of the input matrix.
如果add.stats = FALSE,相同的尺寸的矩阵X与rowwise均值为零和rowwise的标准偏差为1。如果add.stats = TRUE,一个列表,其中包含这个矩阵和rowwise的均值和标准差的输入矩阵。
(作者)----------Author(s)----------
Holger Schwender, <a href="mailto:holger.schwender@udo.edu">holger.schwender@udo.edu</a>
参见----------See Also----------
rowCors
rowCors
实例----------Examples----------
# Generate a matrix containing data for 10 categorical [包含10分类数据生成矩阵]
# variables with levels 1, 2, 3.[级别1,2,3的变量。]
mat <- matrix(sample(3, 500, TRUE), 10)
rowScales(mat)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|