I have been unable to find a way to adjust the (vertical) distance between plot and main title in R using par. In this example:
plot(1, 1, main = \"Title\")
We can use title() function with negative line value to bring down the title.
title()
line
See this example:
plot(1, 1) title("Title", line = -2)