R/Q1.R

Defines functions Q1

Documented in Q1

Q1 <-
function(z) {

        U05<-umean(z,0.05)
        M50<-mean(z,trim=0.25)
        L05<-lmean(z,0.05)

        (U05-M50)/(M50-L05)

}

Try the npsm package in your browser

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

npsm documentation built on May 29, 2024, 3:07 a.m.