README

Derek Stevens

2025-07-20

ggplayfair

R-CMD-check CRAN_Status_Badge

About:

Makes Playfair graphs easier to create using ggplot.

How to Use ggplayfair

This section provides a quickstart guide for installing and using the ggplayfair package to create balance of trade charts with ggplot2.


Installation

Install the latest CRAN release:

#install.packages("ggplayfair")

Or install the development version from GitHub:

# If you don’t have devtools installed:
#install.packages("devtools")
library(devtools)

devtools::install_github("DerekStevens99/ggplayfair")

Basic Usage

Load the package and prepare your data frame. Your data should include:

library(ggplot2)
library(ggplayfair)

# sample data
df <- data.frame(
  year    = 2000:2010,
  exports = c(50, 55, 60, 58, 62, 65, 63, 67, 70, 72, 75),
  imports = c(45, 50, 52, 55, 58, 60, 100, 120, 68, 70, 74)
)

# one line - geom_balance_of_trade - builds the Playfair‐style ribbon + lines + points
ggplot(df, aes(x = year, exports = exports, imports = imports)) +
  geom_balance_of_trade(alpha = 0.6) +
  scale_fill_manual(
    values = c(surplus = "forestgreen", deficit = "firebrick")
  ) +
  labs(
    title    = "Balance of Trade",
    subtitle = "Exports vs Imports, 2000–2010"
  ) +
  theme_minimal()

Customization