Nonstationary GEV


Lecture

2023-11-08

Nonstationarity

Today

  1. Nonstationarity

  2. Houston Hobby Airport rainfall

  3. Potential models

  4. Wrapup

Independent and identically distributed

  1. Extreme value theory is based on the assumption that the data are independent and identically distributed (iid).
    1. Each draw comes from the same distribution
  2. This is violated by
    1. Climate change
    2. Low-frequency variability
    3. Memory processes

Stationarity

  1. A stationary process is a stochastic process whose unconditional joint probability distribution does not change when shifted in time
    1. A stochastic process is a model for a sequence of random variables (e.g.: random walk, MCMC)
  2. “Stationarity is dead” (Milly et al., 2008)

Climate change impacts overview

  1. Thermodynamic effects
    1. Clausius-Clapeyron relation: \(e_s(T) = e_0 \exp\left(\frac{L_v}{R_v T}\right)\)
      1. About 7% per degree K
  2. Dynamic effects
    1. Longer, hotter summers
    2. “Tropics” expand poleward
    3. Storm structure and intensity

The rest of this section draws from Seneviratne et al. (2021) executive summary

Climate change impacts on precipitation

  • The frequency and intensity of heavy precipitation events have likely increased at the global scale over a  majority of land regions with good observational coverage. Heavy precipitation has likely increased on the continental scale over three continents: North America, Europe, and Asia.
  • Heavy precipitation will generally become more frequent and more intense with additional global warming. At a global warming level of 4°C relative to the pre-industrial level, very rare (e.g., one in 10 or more years) heavy precipitation events would become more frequent and more intense than in the recent past, on the global scale (virtually certain) and in all continents and AR6 regions. The increase in frequency and intensity is extremely likely for most continents and very likely for most AR6 regions.
  • The projected increase in the intensity of extreme precipitation translates to an increase in the frequency and magnitude of pluvial floods  – surface water and flash floods  – (high confidence), as pluvial flooding results from precipitation intensity exceeding the capacity of natural and artificial drainage systems.

Climate change impacts on river floods

  • Significant trends in peak streamflow have been observed in some regions over the past decades (high confidence).
    • The  seasonality of river floods has changed in cold regions where snow-melt is involved, with an earlier occurrence of peak streamflow (high confidence).
  • Global hydrological models project a  larger fraction of land areas to be affected by an increase in river floods than by a  decrease in river floods (medium confidence).

Climate change impacts on extreme temperatures

  • The frequency and intensity of hot extremes (including heatwaves) have increased, and those of cold extremes have decreased on the global scale since 1950 (virtually certain). This also applies at regional scale, with more than 80% of AR6 regions1 showing similar changes assessed to be at least likely.
  • Human-induced greenhouse gas forcing is the main driver of the observed changes in hot and cold extremes on the global scale (virtually certain) and on most continents (very likely).
  • The frequency and intensity of hot extremes will continue to increase and those of cold extremes will continue to decrease, at global and continental scales and in nearly all inhabited regions1 with increasing global warming levels.

Climate change impacts on tropical cyclones

  • The average and maximum rain rates associated with tropical cyclones (TCs), extratropical cyclones and atmospheric rivers across the globe, and severe convective storms in some regions, increase  in a  warming world (high confidence).
  • It is likely that the global proportion of Category 3–5 tropical cyclone instances2 has increased over the past four decades.
  • The proportion of intense TCs, average peak TC wind speeds, and peak wind speeds of the most intense TCs will increase on the global scale with increasing global warming (high confidence).
  • There is low confidence in past changes of maximum wind speeds and other measures of dynamical intensity of extratropical cyclones. Future wind speed changes are expected to be small, although poleward shifts in the storm tracks could lead to substantial changes in extreme wind speeds in some regions (medium confidence).

El Niño-Southern Oscillation

Houston Hobby Airport rainfall

Today

  1. Nonstationarity

  2. Houston Hobby Airport rainfall

  3. Potential models

  4. Wrapup

Motivation

Fagnant et al. (2020)

Get data

Data is from NOAA GHCND

annmax_prcp = CSV.read("data/hobby-annmax.csv", DataFrame)
annmax_prcp[!, :date] = Dates.Date.(annmax_prcp[!, :date], "mm/dd/yyyy")
annmax_prcp[!, :year] = Dates.year.(annmax_prcp[!, :date])
first(annmax_prcp, 5)
5×3 DataFrame
Row date prcp_in year
Date Float64 Int64
1 1931-11-24 2.53 1931
2 1932-08-14 4.17 1932
3 1933-07-23 2.9 1933
4 1934-04-06 3.68 1934
5 1935-12-08 2.99 1935
  1. Keep only years where there are at least 350 days of data

Exploratory visualization

Code
plot(
    annmax_prcp.year,
    annmax_prcp.prcp_in;
    marker=:circ,
    label=false,
    xlabel="Year",
    ylabel="Ann. Max. Daily Precipitation [in]",
    title="Houston Hobby Airport"
)

Stationary analysis

hobby_mle = gevfit(annmax_prcp.prcp_in)
p0 = plot_rl_extremes(hobby_mle, annmax_prcp.prcp_in)
title!(p0, "Stationary Model")

Rank Trend

Tip

The Mann-Kendall test is commonly used to assess the presence of a trend in time series data.

prcp_rank = invperm(sortperm(annmax_prcp.prcp_in))
rank_cor = round(cor(prcp_rank, annmax_prcp.year); digits=2)
scatter(
    annmax_prcp.year,
    prcp_rank;
    label=false,
    xlabel="Year",
    ylabel="Rank",
    title="Rank Correlation: $rank_cor"
)

Potential models

Today

  1. Nonstationarity

  2. Houston Hobby Airport rainfall

  3. Potential models

  4. Wrapup

Rolling window

  • As in Fagnant et al. (2020)
  • Pro:
    • Simple
    • Interpretable
  • Con:
    • Noisy
    • You lose extremes

Less bias, more variance

Regression models

In linear regression and GLMs, every data point is drawn from its own distribution. This distribution depends on some parameters and some covariates.

Each data point’s likelihood can be expressed relative to that particular distribution.

We can apply this idea to extreme value models (e.g., the GEV)

Types of regression models

We have limitless flexibility!

What varies? ::: {.incremental} 1. Location parameter: \(\mu(t) = f(X(t))\) 1. Scale parameter: \(\sigma(t) = f(X(t))\) 1. Both location and scale 1. Scale and coefficient of variation: \(\mu(t) = \phi \sigma(t)\) 1. Varying shape is impractical but allowed

How does it vary? ::: {.incremental} 1. Linear: \(\theta(t) = \alpha + \beta_1 X_1(t) + \beta_2 X_2(t) + \cdots\) 1. Occasionally more (splines, GAMS, etc) 1. Anything is allowed, not everything is practical

:::

Choosing covariates

Some general guidance:

  1. Theory / domain knowledge is helpful
  2. For precip, log of CO2 is a good variable
    • isolates global warming from ENSO

Read in covariates

co2 = CSV.read("data/global_mean_CO2.csv", DataFrame)
co2[!, :log_CO2] = log.(co2[!, :CO2_ppm])
mrg = innerjoin(co2, annmax_prcp; on=:year)
plot(mrg[!, :year], mrg[!, :CO2_ppm]; label=false, xlabel="Year", ylabel="CO2 (ppm)")

Location trend

\[ \begin{aligned} y_t &\sim \text{GEV} \left( \mu_t, \sigma, \xi \right) \\ \mu_t &= \alpha + \beta X_t \end{aligned} \]

If we are OK with default uniform priors (🫤) we can use Extremes.jl

fit1 = gevfitbayes(mrg, :prcp_in; locationcovid=[:log_CO2])
p1 = plot_rl_extremes(fit1, annmax_prcp.prcp_in)
title!(p1, "Location Trend: 2017")

Scale trend

fit2 = gevfitbayes(mrg, :prcp_in; logscalecovid=[:log_CO2])
p2 = plot_rl_extremes(fit2, annmax_prcp.prcp_in)
title!(p2, "Scale Trend: 2017")

Both

fit3 = gevfitbayes(mrg, :prcp_in; locationcovid=[:log_CO2], logscalecovid=[:log_CO2])
p3 = plot_rl_extremes(fit3, annmax_prcp.prcp_in)
title!(p3, "Location and Scale Trend: 2017")

Comparison

plot(p0, p1, p2, p3; link=:all, layout=(2, 2), size=(900, 700), ylims=(0, 25))

Wrapup

Today

  1. Nonstationarity

  2. Houston Hobby Airport rainfall

  3. Potential models

  4. Wrapup

Key ideas

  • Nonstationary models reduce bias, increase variance
    • Physical process knowledge is valuable
    • Large parametric uncertainty
  • Model comparison is challenging
Fagnant, C., Gori, A., Sebastian, A., Bedient, P. B., & Ensor, K. B. (2020). Characterizing spatiotemporal trends in extreme precipitation in Southeast Texas. Natural Hazards, 104(2), 1597–1621. https://doi.org/10.1007/s11069-020-04235-x
Milly, P. C. D., Betancourt, J., Falkenmark, M., Hirsch, R. M., Kundzewicz, Z. W., Lettenmaier, D. P., & Stouffer, R. J. (2008). Stationarity is dead: Whither water management? Science, 319(5863), 573–574. https://doi.org/10.1126/science.1151915
Seneviratne, S. I., Zhang, X., Adnan, M., Badi, W., Dereczynski, C., Di Luca, A., et al. (2021). Weather and climate extreme events in a changing climate. In V. Masson-Delmotte, P. Zhai, A. Pirani, S. L. Connors, C. Péan, S. Berger, et al. (Eds.), Climate change 2021: The physical science basis. Contribution of working group I to the sixth assessment report of the intergovernmental panel on climate change. Book section, Cambridge, UK and New York, NY, USA: Cambridge University Press. https://doi.org/10.1017/9781009157896.013