summaryrefslogtreecommitdiff
path: root/R/gg_csobczak.R
blob: 97448a38f129e74bc664602cd77076328eae919f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#' Add Formatting
#'
#' This adds standard formating to my ggplots.
#' @param p A ggplot object to add formatting to.
#' @keywords ggplot plot p
#' @export
#' @examples
#' df <- data.frame(x=rnorm(10), y=rnorm(10))
#' p <- ggplot(data=df, aes(x=x, y=y)) + geom_point()
#' p <- gg_csobczak(p)
gg_csobczak <- function(p){
	p + theme_classic()
}