From f3a3a41e03439c85a55eae40c6a1bfaf0eb55965 Mon Sep 17 00:00:00 2001 From: tomschloss Date: Mon, 13 Apr 2015 12:11:54 +0100 Subject: [PATCH] Removed tick marks from theme_minimal I've removed tick marks from theme_minimal as I think that is more in keeping with the theme name. The black ticks seemed a little visually unnecessary. --- R/theme-defaults.r | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/theme-defaults.r b/R/theme-defaults.r index f84800cf72..23346ba4d2 100644 --- a/R/theme-defaults.r +++ b/R/theme-defaults.r @@ -177,7 +177,8 @@ theme_minimal <- function(base_size = 12, base_family = "") { panel.background = element_blank(), panel.border = element_blank(), strip.background = element_blank(), - plot.background = element_blank() + plot.background = element_blank(), + axis.ticks = element_blank() ) }