Description Usage Arguments Value Examples
Drop a single term to either mu, sigma, and xi based on AIC.
1 2 3 4 5 | drop1_AIC_mu(fit)
drop1_AIC_sigma(fit)
drop1_AIC_xi(fit)
|
fit |
An object of class |
An object (a list) of class c("gev", "evreg")
summarising
the new model fit (which may be the same as fit
) and containing the
following additional components
Input_fit |
The input object of the class |
Note |
A message that tells if a covariate has been added or not. |
Output_fit |
A list that contains formulae for the parameter,
and the output object of the class |
dropped_covariate |
A character vector shows dropped covariate |
AIC |
AIC values for both input model and output model if two models are different. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ### Annual Maximum and Minimum Temperature
P6 <- gevreg(TMX1, data = PORTw[,-1], mu = ~MTMAX + AOindex + STDTMAX + STDMIN + MDTR)
P7 <- gevreg(TMX1, data = PORTw[,-1], sigma = ~MTMAX + STDTMAX + STDMIN + MDTR)
P8 <- gevreg(TMX1, data = PORTw[,-1], xi = ~MTMAX + STDTMAX + STDMIN + MDTR)
drop1_AIC_mu(P6)
drop1_AIC_sigma(P7)
drop1_AIC_xi(P8)
### Oxford and Worthing annual maximum temperatures
#Parameter mu
ow$year <- (ow$year - 1901) / (1980 - 1901)
ow1 <- gevreg(y = temp, data = ow[-3], mu = ~loc + year, sigma = ~loc,
xi = ~loc, sigmalink = identity)
drop1_AIC_mu(ow1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.