Theme for ggplot2 that is similar to the default style of charts in current versions of Microsoft Excel.
Value
An object of class theme()
.
See also
Other themes excel:
theme_excel()
Examples
library("ggplot2")
p <- ggplot(mtcars) +
geom_point(aes(x = wt, y = mpg, colour = factor(gear))) +
facet_wrap(~am)
p + theme_excel_new() + scale_colour_excel_new()