7.1 Definētās attēla tēmas
Paketē ggplot2 ir definētas astoņas gatavas tēmas attēla izskata maiņai. Attēlā noformējums mainās, pieskaitot klāt atbilstošo tēmas funkciju. Katrā tēmā papildus ir iespējams mainīt pamatteksta izmēru (base_size=
) un pamatfontu (base_family=
). Gatovos tēmu noformējumus protams var papildināt arī ar citām izmaiņām konkrētiem elementiem. Attēlos 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8 un 7.9 parādīts kā izskatās sākotnējais attēls un kā tas mainās, izmantojot kādu no gatavajām tēmām.
ggplot(CO2,aes(conc,uptake,color = Type)) + geom_point()
ggplot(CO2,aes(conc,uptake,color = Type)) + geom_point() +
theme_bw()
ggplot(CO2,aes(conc,uptake,color = Type)) + geom_point() +
theme_classic()
ggplot(CO2,aes(conc,uptake,color = Type)) + geom_point() +
theme_dark()
ggplot(CO2,aes(conc,uptake,color = Type)) + geom_point() +
theme_grey()
ggplot(CO2,aes(conc,uptake,color = Type)) + geom_point() +
theme_light()
ggplot(CO2,aes(conc,uptake,color = Type)) + geom_point() +
theme_linedraw()
ggplot(CO2,aes(conc,uptake,color = Type)) + geom_point() +
theme_minimal()
ggplot(CO2,aes(conc,uptake,color = Type)) + geom_point() +
theme_void()