+ ckb_style() does
three things to a ggplot2 plot:
Make a scatter plot with ggplot.
Use + ckb_style() to apply a CKB theme, cap axis lines
and fix the aspect ratio.
Or apply just a CKB theme.
Set axis limits.
If you do not want a gap between the axes, set
gap = c(0, 0).
Change the aspect ratio of the plot.
Set the width of the plot (width controls the length of
the x axis).
The ink and paper arguments of
theme_ckb() and ckb_style() can be used to
change the colours of the plot.
The plot.margin arguments of theme_ckb()
and ckb_style() can be used to adjust the margin around the
plot.
If you wish to override some aspect of the theme applied by
ckb_style() or theme_ckb(), then this can be
done by adding a theme after + ckb_style(),
plot + ckb_style(xlims = c(0, 8),
ylims = c(10, 50)) +
theme(axis.title = element_text(colour = "red", face = "plain"))