search for: params_gev

Displaying 1 result from an estimated 1 matches for "params_gev".

2012 Oct 12
0
(no subject)
Hi All, I am performing GEV analysis on temperature/precipitation data using L moments: dim(data) [1] 145 192 156 Lmoments <- apply(data, 1:2, function(x) samlmu(x,nmom=4,sort.data=TRUE)) params_GEV <- apply(Lmoments,2:3,pelgev) location <- params_GEV[1,,] (xi) scale <- params_GEV[2,,] (alpha) shape <- params_GEV[3,,] (k) I want to use the ks.boot function but I am unsure of how to implement it using the pgev distribution. For example: ks.test(data[1,1],pgev,shape[1,1],...