catplot: Capable And Tidy Plot

November 11, 2024 · View on GitHub

Lifecycle:
experimental R-CMD-check Codecov test
coverage

🤪 Overview

catplot is a capable and tidy data visualization tool and maintained by Songqi Duan.

📦 Installation

You can install the development version of catplot like so:

install.packages("pak")
pak::pak("catplot/catplot")

🕹️ Usage

This is a basic usage of catplot:

library(ggplot2)
library(catplot)

data("iris")

p <- iris |>
  ggplot(aes(x = Sepal.Length, y = Sepal.Width)) +
  geom_point(aes(color = Species)) +
  theme_cat(aspect_ratio = 1)
p

🧩 Code of Conduct

Please note that the catplot project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.