Cluster Models

A cluster is a group of the same or similar events close together. Clusters arise in hurricane origin locations, tracks, and landfalls. In this chapter, we look at how to analyze and model clusters. We divide the chapter into methods for time, space, and feature clustering. Of the three feature clus...

Full description

Bibliographic Details
Main Authors: Elsner, James B., Jagger, Thomas H.
Format: Book Part
Language:unknown
Published: Oxford University Press 2013
Subjects:
Soi
Online Access:http://dx.doi.org/10.1093/oso/9780199827633.003.0015
Description
Summary:A cluster is a group of the same or similar events close together. Clusters arise in hurricane origin locations, tracks, and landfalls. In this chapter, we look at how to analyze and model clusters. We divide the chapter into methods for time, space, and feature clustering. Of the three feature clustering is best known to climatologists. We begin by showing you how to detect and model time clusters. Consecutive hurricanes originating in the same area often take similar paths. This grouping, or clustering, increases the potential for multiple landfalls above what you expect from random events. A statistical model for landfall probability captures clustering through covariates like the North Atlantic Oscillation (NAO), which relates a steering mechanism (position and strength of the subtropical high pressure) to coastal hurricane activity. But there could be additional time correlation not related to the covariates. A model that does not account for this extra variation will underestimate the potential for multiple hits in a season. Following Jagger and Elsner (2006), you consider three coastal regions including the Gulf Coast, Florida, and the East Coast (Fig. 6.2). Regions are large enough to capture enough hurricanes, but not too large as to include many non-coastal strikes. Here you use hourly position and intensity data described in Chapter 6. For each hurricane, you note its wind speed maximum within each region. If the maximum wind exceeds 33 m s−1, then you count it as a hurricane for the region. A tropical cyclone that affects more than one region at hurricane intensity is counted in each region. Because of this, the sum of the regional counts is larger than the total count. Begin by loading annual.RData. These data were assembled in Chapter 6. Subset the data for years starting with 1866. . . . > load("annual.RData") > dat = subset(annual, Year >= 1866) . . . The covariate Southern Oscillation Index (SOI) data begins in 1866 . Next, extract all hurricane counts for the Gulf coast, ...