R/identification.R

Defines functions select.mean

Documented in select.mean

select.mean<-function(data,t) {
    m<-apply(data,2,mean)
    s<-data[,m>t,drop=FALSE]
    list(selected=s/t,
         u=t(t(s)/m[m>t]),
         gamma=m[m>t]/t)
}

Try the HiDimMaxStable package in your browser

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

HiDimMaxStable documentation built on May 29, 2017, 6:20 p.m.