Learn R Programming

rpdo (version 0.3.2)

pdo: Pacific Decadal Oscillation Index

Description

Monthly Pacific Decadal Oscillation (PDO) index values.

Usage

pdo

Arguments

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

Run this code
library(rpdo)
library(ggplot2)

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

Run the code above in your browser using DataLab