Rishabh Kumar 30/05/2020
An R package to to make your graphs prettier quickly. This is still a work in progress so bear with me. Here is the standard version to make your graphs using ggplot2.
library(ggplot2)
p1 <- ggplot(diamonds, aes(price, cut)) + geom_bar(stat = "summary", fun.x = "mean" )
p1
remotes::install_github("rishkum/dectechViz")
library(dectechViz)
p2 <- ggplot(diamonds, aes(price, cut)) + geom_bar(stat = "summary" , fill = dectech_cols("dectech green"))
p2
Finally you will get
p2 <- ggpretay(p2)
p2