reglmr {lmomRFA} | R Documentation |
Regional weighted average of L-moments.
reglmr(xmom, weight)
xmom |
Matrix or data frame each of whose rows contains the L-moments and L-moment ratios for one site, in the order l_1, l_2, t_3, t_4, etc. |
weight |
Vector containing the weights to be used for each site. If omitted, equal weights will be used. |
Vector containing the regional average L-moments.
J. R. M. Hosking hosking@watson.ibm.com
data(Maxwind) (xmom<-t(sapply(Maxwind,samlmu))) nrec<-sapply(Maxwind,length) reglmr(xmom,nrec) # weighted by record length reglmr(xmom) # unweighted