R/mdmb_weighted_sd.R

Defines functions mdmb_weighted_sd

## File Name: mdmb_weighted_sd.R
## File Version: 0.01

mdmb_weighted_sd <- function(x, w=rep(1,length(x)), unbiased=TRUE, na.rm=TRUE)
{
    v1 <- mdmb_weighted_var(x=x, w=w, unbiased=unbiased, na.rm=na.rm)
    v1 <- sqrt(v1)
    return(v1)
}

Try the mdmb package in your browser

Any scripts or data that you put into this service are public.

mdmb documentation built on March 7, 2023, 6:58 p.m.