On 26/04/2011 8:01 AM, BMichel wrote:
Hello,

Does anybody know how to make the "hat" correctly appears in the label of
this plot (with this cex.lab coefficient) :

plot(1:10, 1:10,ylab = expression(hat(h)),cex.lab = 1.5)

The "hat" does not completely appear on my graph, it is like cut on the left
side.
It tried to change the margin :

par(oma=c(0,2,0,0))
plot(1:10, 1:10,ylab = expression(hat(h)),cex.lab = 1.5)

but it doesn't work. Thanks for your help.

Don't use "oma", that's the "outer margin".  Use "mar", e.g.

# Add one to the left margin
par(mar=c(5.1, 5.1, 4.1, 2.1) )

Duncan Murdoch

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to