np_climate | R Documentation |
Datasets containing monthly, seasonal, and annual averages of climate indices relevant to the North Pacific. All indices are sourced from NOAA PSL Climate Indices.
data(np_climate)
A data frame with one row per month:
Date of the observation (first day of month).
Year.
Month name (e.g., "Jan", "Feb", etc.).
Pacific-North American pattern (PNA) index. Measures atmospheric variability over North America and the North Pacific.
East Pacific Oscillation (EPO) index. Measures pressure anomalies across the eastern North Pacific.
Western Pacific (WP) pattern index. Describes variability over the western Pacific and eastern Asia.
Central ENSO (CENSO) index. ENSO variability focusing on central Pacific SST anomalies.
Western Hemisphere Warm Pool (WHWP) index. Measures the area of ocean surface temperatures >28.5°C in the Atlantic and eastern Pacific.
Oceanic Niño Index (ONI). A common index to monitor El Niño/La Niña events.
Multivariate ENSO Index Version 2 (MEI.v2). A multivariate index combining several ENSO-related variables.
Pacific Decadal Oscillation (PDO) index. Long-term ocean temperature fluctuations in the North Pacific.
Indo-Pacific Ocean Temperature Pattern Index (IPOTPI). Measures SST patterns related to tropical Indo-Pacific variability.
North Pacific Index (NPI). Area-averaged sea level pressure over the North Pacific.
Pacific Warm Pool index (PACWARMPOOL). Area-averaged SST anomalies in the warm pool region of the Pacific.
Global Mean Sea Surface Temperature (GMSST) anomalies.
np_climate_seasonal
Seasonal and annual averages of each climate index.
Seasons are defined as:
Winter: January, February, March
Spring: April, May, June
Summer: May, June, July, August
Fall: September, October, November
Note: Some months (May and June) are included in both spring and summer means.
A data frame with one row per year:
Year.
Mean index value for that season (e.g., pdo.spring
, oni.winter
).
Annual mean across all months for that index (e.g., pdo.annual
, oni.annual
).
Objects of class "data.frame"
.
np_climate_month
Climate indices recorded at monthly resolution.
Data retrieved from NOAA PSL Climate Indices:
# Monthly PDO example
library(ggplot2)
ggplot(np_climate_month, aes(x = date, y = pdo)) +
geom_line() +
labs(title = "Pacific Decadal Oscillation (PDO) - Monthly",
x = "Year",
y = "PDO Index") +
theme_minimal()
# Annual PDO example
ggplot(np_climate_seasonal, aes(x = year, y = pdo.annual)) +
geom_line() +
labs(title = "Pacific Decadal Oscillation (PDO) - Annual Mean",
x = "Year",
y = "PDO Index (Annual Mean)") +
theme_minimal()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.