catplot is a capable and tidy data visualization tool and maintained
by Songqi Duan.
You can install the development version of catplot like so:
install.packages("pak")
pak::pak("catplot/catplot")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)
pPlease 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.

