catplot
is a capable and tity data visualization tool and maintained
by Songqi Duan.
Install the latest version from GitHub as follow:
if (!require(devtools)) install.packages("devtools")
devtools::install_github("zerostwo/catplot")
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
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.