Monthly Pacific Decadal Oscillation (PDO) index values.

pdo

Format

A tbl data frame:

Year

The year as an integer.

Month

The month as an integer.

PDO

The Pacific Decadal Oscillation index as a numeric.

Details

For more information see https://github.com/poissonconsulting/rpdo.

Examples

library(rpdo)
library(ggplot2)

data(pdo)
ggplot(data = subset(pdo, pdo$Month == 1), aes(x = Year, y = PDO)) +
  geom_line() +
  ylab("January PDO Index")