Estoy usando ggplot2 para mejorar los gráficos de barras de precipitación.
Aquí hay un ejemplo reproducible de lo que quiero lograr:
library(ggplot2)
library(gridExtra)
secu <- seq(1, 16, by=2)
melt.d <- data.frame(y=secu, x=LETTERS[1:8])
m <- ggplot(melt.d, aes(x=x, y=y)) +
geom_bar(fill="darkblue") +
labs(x="Weather stations", y="Accumulated Rainfall [mm]") +
opts(axis.text.x=theme_text(angle=-45, hjust=0, vjust=1),
title=expression("Rainfall"), plot.margin = unit(c(1.5, 1, 1, 1), "cm"),
plot.title = theme_text(size = 25, face = "bold", colour = "black", vjust = 5))
z <- arrangeGrob(m, sub = textGrob("Location", x = 0, hjust = -3.5, vjust = -33, gp = gpar(fontsize = 18, col = "gray40"))) #Or guessing x and y with just option
z
No sé cómo evitar el uso de adivinar números en hjust y vjust en ggplot2. ¿Existe una mejor manera de poner un subtítulo (no solo usando \ n, sino un subtítulo con diferente color y tamaño de texto)?
Necesito poder usar con ggsave para tener un archivo pdf.
Aquí hay dos preguntas relacionadas:
¿Agregar una cita de nota al pie fuera del área de la parcela en R?
¿Cómo puedo agregar un subtítulo y cambiar el tamaño de fuente de los gráficos de ggplot en R?
Gracias por cualquier ayuda.