R ggthemes package for extra ggplot2 themes. Use for publication-ready themes like Economist, WSJ, FiveThirtyEight.
Scanned 6/5/2026
Install via CLI
openskills install LeoLin990405/r-analytics-skill---
name: ggthemes
description: R ggthemes package for extra ggplot2 themes. Use for publication-ready themes like Economist, WSJ, FiveThirtyEight.
---
# ggthemes Package
Extra themes and scales for ggplot2.
## Themes
```r
library(ggplot2)
library(ggthemes)
p <- ggplot(mtcars, aes(wt, mpg)) + geom_point()
# Publication themes
p + theme_economist()
p + theme_wsj()
p + theme_fivethirtyeight()
p + theme_tufte()
p + theme_stata()
p + theme_excel()
p + theme_gdocs()
p + theme_hc() # Highcharts
# Minimal themes
p + theme_few()
p + theme_clean()
p + theme_foundation()
```
## Color Scales
```r
# Economist
p + scale_color_economist()
# Tableau
p + scale_color_tableau()
p + scale_fill_tableau()
# Colorblind-safe
p + scale_color_colorblind()
# FiveThirtyEight
p + scale_color_fivethirtyeight()
# Stata
p + scale_color_stata()
# Few
p + scale_color_few()
```
## Shapes
```r
# Shapes for colorblind
p + scale_shape_cleveland()
p + scale_shape_tremmel()
```
## Example
```r
ggplot(economics, aes(date, unemploy)) +
geom_line() +
theme_economist() +
scale_color_economist() +
labs(title = "US Unemployment")
```
No comments yet. Be the first to comment!
Find and analyze YouTube competitor channels using YouTube Data API v3. Discover competitors through keyword search, category matching, content similarity, and related channel discovery. Compare metrics, content strategies, and market positioning. Use when users want to (1) Find competitors for their YouTube channel, (2) Analyze competitor performance metrics, (3) Compare their channel against competitors, (4) Identify content gaps and opportunities, (5) Benchmark against similar creators, (6...