Skip to content

Latest commit

 

History

History
56 lines (42 loc) · 1.47 KB

README.md

File metadata and controls

56 lines (42 loc) · 1.47 KB

catplot: Capable And Tity Plot

R-CMD-check Codecov test coverage lifecycle

🤪 Overview

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

📦 Installation

Install the latest version from GitHub as follow:

if (!require(devtools)) install.packages("devtools")
devtools::install_github("zerostwo/catplot")

🕹️ Usage

library(catplot)
library(ggplot2)

data("iris")
p <- ggplot(
  data = iris,
  aes(
    x = Species,
    y = Sepal.Length
  )
) +
  geom_boxplot() +
  theme_cat(
    aspect_ratio = 1,
    show_panel_grid = "both",
    show_title = "y"
  )
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.