powered by
This function is to compute an unbiased sample weighted variance.
weighted.var(x, w = NULL)
A vector to compute a variance, var(x)
A weight vector
Returns an unbiased sample weighted variance
# NOT RUN { ## If you do not specify weights, ## it returns the usual unweighted sample variance weighted.var(x=c(1,3,5)) weighted.var(x=c(1,3,5),w=c(0.1,0.5,0.4)) # }
Run the code above in your browser using DataLab