Hi guys, I am trying to shift down the "ylab" of my plot but can't find how to do it. I tried to tune "mar" but it enable more room for the labels to be displayed but it does not move to "ylab" as I would like. Is there a way with "par" to shift down my "ylab" ?? Cheers -- View this message in context: http://r.789695.n4.nabble.com/shifting-down-ylab-in-a-plot-tp3057071p3057071.html Sent from the R help mailing list archive at Nabble.com.
I found it is mgp -- View this message in context: http://r.789695.n4.nabble.com/shifting-down-ylab-in-a-plot-tp3057071p3057075.html Sent from the R help mailing list archive at Nabble.com.
No in fact this is not working as all main,xlab,ylab are shited if mgp is changed Any help ? -- View this message in context: http://r.789695.n4.nabble.com/shifting-down-ylab-in-a-plot-tp3057071p3057081.html Sent from the R help mailing list archive at Nabble.com.
> I am trying to shift down the "ylab" of my plot but can't find how to do it. > I tried to tune "mar" but it enable more room for the labels to be displayed > but it does not move to "ylab" as I would like. > > Is there a way with "par" to shift down my "ylab" ??There may be a simpler/more elegant way to do it, but this does what you asked for: # plot data omitting the ylab plot(1:10,1:10, ylab='') # add the ylab myself using flushleft (adj=0.0) mtext('foo', side=2, line=3, adj=0.0) cu Philipp -- Dr. Philipp Pagel Lehrstuhl f?r Genomorientierte Bioinformatik Technische Universit?t M?nchen Wissenschaftszentrum Weihenstephan Maximus-von-Imhof-Forum 3 85354 Freising, Germany http://webclu.bio.wzw.tum.de/~pagel/
thanks Phillip for the trick. However I am a bit surprised that something as trivial as this is not accessible via par options... If somebody know how to do it with par ... or anything from graphics would be nice to know Cheers -- View this message in context: http://r.789695.n4.nabble.com/shifting-down-ylab-in-a-plot-tp3057071p3057766.html Sent from the R help mailing list archive at Nabble.com.