Theme 'scientific'

theme_scientific(base_size = 12, base_family = "Parastoo FD-WOL")

Arguments

base_size

base font size, given in pts.

Value

ggplot2 theme

Examples

if (FALSE) {
library(ggplot2)
ggplot(data = mtcars, aes(x = cyl)) +
  geom_bar(aes(y = ..count..,fill = as.character(cyl)))+
  theme_scientific()+
  scale_fill_mpi()
  }