wt.mean(SDMTools)
wt.mean()所属R语言包:SDMTools
Weighted mean, variance and standard deviation calculations
加权均值,方差和标准差的计算
译者:生物统计家园网 机器人LoveR
描述----------Description----------
wt.mean calculates the mean given a weighting of the values. <br> <br> wt.var is the unbiased variance of the weighted mean calculation using equations of GNU Scentific Library (http://www.gnu.org/software/gsl/manual/html_node/Weighted-Samples.htmland.<br><br> wt.sd is the standard deviation of the weighted mean calculated as the sqrt of wt.var. <br> <br> Note: NA data is automatically ommitted from analysis.
wt.mean计算的平均加权的值。参考参考wt.var是公正的方差的加权平均计算,用公式的GNU Scentific图书馆(http://www.gnu.org/software/gsl/manual/html_node/Weighted-Samples.htmland参考参考wt.sd是wt.var。<br> <br>注意的sqrt计算的加权平均值的标准偏差:NA数据被自动省略从分析。
用法----------Usage----------
wt.mean(x,wt)
wt.var(x,wt)
wt.sd(x,wt)
参数----------Arguments----------
参数:x
is a vector of numerical data.
是一个向量的数值数据。
参数:wt
is a vector of equal length to x representing the weights.)
是一个向量长度相等x代表的权重。)
值----------Value----------
returns a single value from analysis requested.
返回单个值分析要求。
(作者)----------Author(s)----------
Jeremy VanDerWal <a href="mailto:jjvanderwal@gmail.com">jjvanderwal@gmail.com</a>
实例----------Examples----------
#define simple data[定义简单的数据]
x = 1:25 # set of numbers[数字]
wt = runif(25) #some arbitrary weights[一些任意的权重]
#display means & variances (unweighted and then weighted)[显示装置及差异(加权,加权)]
mean(x); wt.mean(x,wt)
var(x); wt.var(x,wt)
sd(x); wt.sd(x,wt)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|