weightedVariance {scHOT} | R Documentation |
the weightedVariance function
weightedVariance(x, y = NULL, w)
x |
x is a data vector |
y |
default to NULL, if given it is ignored |
w |
weight vector, values should be between 0 and 1 |
numeric
weighted variance value for x
x = rnorm(100) w = runif(100) weightedVariance(x,w = w)