CCB_theme
Getting started
Use this stylesheet to quickly modify the style of your ggplot plots to the CCB style, for publications. You can use the stylesheet file like so:
Example code
To utilize the "CCB_plot_style" function in your ggplot codes, simply incorporate it into your code. With "mycolor", you have the flexibility to select from various colors to represent your data.
library(ggplot2)
##line chart with points
df=data.frame(x=1:10,y=rnorm(10))
ggplot(df,aes(x=x,y=y))+ geom_point()+ geom_line(linewidth=1.5,color=mycolor[1])+ CCB_plot_style()+ scale_color_manual(values = mycolor)
#Box_plot
ggplot(mtcars, aes(x = wt, y = mpg, color = factor(cyl))) + geom_line() + ggtitle("Custom color palette") + CCB_plot_style()+ scale_color_manual(values = mycolor)