Description Usage Value Examples
View source: R/themes.R
Theme for Plot Heatmaps
1
theme_map()
ggplot2 theme
1 2 3 4 5 6 7 8 9 10
library(ggplot2) # Dummy data x <- LETTERS[1:20] y <- paste0("var", seq(1,20)) data <- expand.grid(X=x, Y=y) data$Z <- runif(400, 0, 5) # Heatmap ggplot(data, aes(X, Y, fill= Z)) + geom_tile()+ theme_map()
Add the following code to your website.
REMOVE THIS Copy to clipboard
For more information on customizing the embed code, read Embedding Snippets.