Risposte:
Uso theme_set()
theme_set(theme_gray(base_size = 18))
qplot(1:10, 1:10)
base_size
tema elencato ma sembra funzionare. Ho notato che il mio geom_text
per mostrare il testo di una media non eredita questa modifica di base_size. Chiunque abbia fortuna a farlo funzionare
Utilizzare theme_set
se si desidera eseguire l'aggiornamento per il resto della sessione attiva:
theme_set(theme_grey(base_size = 18))
Se vuoi cambiare solo un grafico puoi impostare base_size
nel tema:
qplot(1:10, 1:10) + theme_grey(base_size = 18)
ggplot(mtcars, aes(x = mpg, y = cyl)) +
geom_point() +
theme_grey(base_size = 18)
theme_gray()$text$size
)