The ggplot problem "does vjust not work in v 2.0 for plot.title?" Hadley writes:
" ,
. ,
. , vjust hjust . ,
margin() element_text() "
t b margin, , :
ggplot(df, aes(x, y))+
geom_line() +
ggtitle("Demo") +
theme(plot.title = element_text(margin = margin(t = 10, b = -20)))

. ?margin.
, margin axis.title.x axis.title.y:
ggplot() + ggtitle("this is title") + xlab("this is x") + ylab("this is y") +
theme(plot.title = element_text(margin = margin(b = -10)),
axis.title.x = element_text(margin = margin(t = -10)),
axis.title.y = element_text(margin = margin(r = -10)))
