# Set theme by parameters
basetheme(pch=19, las=1, cex=2)
plot(1, 1)
# Obtain list of theme parameters
# for the current theme
basetheme()
# for a specific theme
theme <- basetheme("brutal")
theme
# Set theme by name
basetheme("dark")
plot(1)
# Set theme by list
theme <- basetheme("clean")
theme$rect.col <- "grey90"
basetheme(theme)
pairs(iris[,1:4], col=iris$Species)
# Reset theme
basetheme(NULL)
Run the code above in your browser using DataLab