pdo: Pacific Decadal Oscillation Index

pdoR Documentation

Pacific Decadal Oscillation Index

Description

Monthly Pacific Decadal Oscillation (PDO) index values.

Usage

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")

rpdo documentation built on Aug. 22, 2023, 5:11 p.m.