Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When I plot two graphs after creating a new x11() device and want to set a overall title it is not displayed well. The top part of the title string is behind the window top bar. Is there a way to fix this? I couldn't find anything in ?x11 or in the x11 client preferences that helped.

This script:

x11()
x <- rnorm(1000, 0, 1)
hist(x)
title('Title', outer = TRUE)

Looks like that:

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
486 views
Welcome To Ask or Share your Answers For Others

1 Answer

R does not by default allocate any space to the outer margins; see par("oma"). Try

par(oma=c(0,0,2,0))

(See ?par and search for "outer" for more information.)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...