Hi, I have done a search on this in vain. How can I add a note to the foot of a graph example below |-----------------------| | Title | | -------- | | | my | | | | graph | | | | | | | | ______| | |note: source | |-----------------------| Many thanks Ronnie
?mtext Peter Ehlers Ronnie Babigumira wrote:> Hi, I have done a search on this in vain. How can I add a note to the foot of a graph example below > > |-----------------------| > | Title | > | -------- | > | | my | | > | | graph | | > | | | | > | | ______| | > |note: source | > |-----------------------| > > > Many thanks > > Ronnie > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
Have you try ?legend or ?text Ronnie Babigumira <rb.glists@gmail.com> a ä¾€crit : Hi, I have done a search on this in vain. How can I add a note to the foot of a graph example below |-----------------------| | Title | | -------- | | | my | | | | graph | | | | | | | | ______| | |note: source | |-----------------------| Many thanks Ronnie ______________________________________________ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html --------------------------------- [[alternative HTML version deleted]]
Thank you all, ?sub did the trick. One more question, Is it possible to orientate the "sub title" independently from the "main title". This is what I would like to do, add a title, label the axes, and add a small note to the bottom left of the plot area. |-----------------------| | Title | | --------| | | my | | | | graph | | | | | | | | ______| | | | | | |note: source | |-----------------------| The example in the help file shows how I can add the title, sub, as well as tweak the size and color. plot(1, col.axis = "sky blue", col.lab = "thistle") title("Main Title", sub = "sub title", cex.main = 2, font.main= 4, col.main= "blue", cex.sub = 0.75, font.sub = 3, col.sub = "red") If I add adj = 0, I get what I want, however, both the title and the note (main and sub rspv) both get the same orientation. Any ideas on how one can go about this (adj.sub does not work) Ronnie justin bem wrote:> Have you try ?legend > or ?text > > Ronnie Babigumira <rb.glists at gmail.com> a ??crit : > Hi, I have done a search on this in vain. How can I add a note to the foot of a graph example below > > |-----------------------| > | Title | > | -------- | > | | my | | > | | graph | | > | | | | > | | ______| | > |note: source | > |-----------------------| > > > Many thanks > > Ronnie > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html > > > > --------------------------------- > > [[alternative HTML version deleted]] > > > > ------------------------------------------------------------------------ > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
Just use two title()s: plot(1) title("Main Title", cex.main=2) title(sub = "sub title", cex.sub = 0.75, adj = 0) Peter Ehlers Ronnie Babigumira wrote:> Thank you all, ?sub did the trick. One more question, Is it possible to orientate the "sub title" independently from the > "main title". > > This is what I would like to do, add a title, label the axes, and add a small note to the bottom left of the plot area. > > |-----------------------| > | Title | > | --------| > | | my | | > | | graph | | > | | | | > | | ______| | > | | > | | > |note: source | > |-----------------------| > > The example in the help file shows how I can add the title, sub, as well as tweak the size and color. > plot(1, col.axis = "sky blue", col.lab = "thistle") > title("Main Title", sub = "sub title", > cex.main = 2, font.main= 4, col.main= "blue", > cex.sub = 0.75, font.sub = 3, col.sub = "red") > > If I add adj = 0, I get what I want, however, both the title and the note (main and sub rspv) both get the same > orientation. Any ideas on how one can go about this (adj.sub does not work) > > Ronnie > > justin bem wrote: > >>Have you try ?legend >> or ?text >> >> Ronnie Babigumira <rb.glists at gmail.com> a ??crit : >> Hi, I have done a search on this in vain. How can I add a note to the foot of a graph example below >> >>|-----------------------| >>| Title | >>| -------- | >>| | my | | >>| | graph | | >>| | | | >>| | ______| | >>|note: source | >>|-----------------------| >> >> >>Many thanks >> >>Ronnie >> >>______________________________________________ >>R-help at stat.math.ethz.ch mailing list >>https://stat.ethz.ch/mailman/listinfo/r-help >>PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html >> >> >> >>--------------------------------- >> >> [[alternative HTML version deleted]] >> >> >> >>------------------------------------------------------------------------ >> >>______________________________________________ >>R-help at stat.math.ethz.ch mailing list >>https://stat.ethz.ch/mailman/listinfo/r-help >>PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html > > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
Many thanks Peter, had actually tried that but was hoping there was something that could save me one extra line of code :-). Cheers Ronnie P Ehlers wrote:> Just use two title()s: > > plot(1) > title("Main Title", cex.main=2) > title(sub = "sub title", cex.sub = 0.75, adj = 0) > > Peter Ehlers > > Ronnie Babigumira wrote: >> Thank you all, ?sub did the trick. One more question, Is it possible >> to orientate the "sub title" independently from the "main title". >> >> This is what I would like to do, add a title, label the axes, and add >> a small note to the bottom left of the plot area. >> >> |-----------------------| >> | Title | >> | --------| >> | | my | | >> | | graph | | >> | | | | >> | | ______| | >> | | >> | | >> |note: source | >> |-----------------------| >> >> The example in the help file shows how I can add the title, sub, as >> well as tweak the size and color. >> plot(1, col.axis = "sky blue", col.lab = "thistle") >> title("Main Title", sub = "sub title", >> cex.main = 2, font.main= 4, col.main= "blue", >> cex.sub = 0.75, font.sub = 3, col.sub = "red") >> >> If I add adj = 0, I get what I want, however, both the title and the >> note (main and sub rspv) both get the same orientation. Any ideas on >> how one can go about this (adj.sub does not work) >> >> Ronnie >> >> justin bem wrote: >> >>> Have you try ?legend >>> or ?text >>> Ronnie Babigumira <rb.glists at gmail.com> a ??crit : >>> Hi, I have done a search on this in vain. How can I add a note to >>> the foot of a graph example below >>> >>> |-----------------------| >>> | Title | >>> | -------- | >>> | | my | | >>> | | graph | | >>> | | | | >>> | | ______| | >>> |note: source | >>> |-----------------------| >>> >>> >>> Many thanks >>> >>> Ronnie >>> >>> ______________________________________________ >>> R-help at stat.math.ethz.ch mailing list >>> https://stat.ethz.ch/mailman/listinfo/r-help >>> PLEASE do read the posting guide! >>> http://www.R-project.org/posting-guide.html >>> >>> >>> >>> --------------------------------- >>> >>> [[alternative HTML version deleted]] >>> >>> >>> >>> ------------------------------------------------------------------------ >>> >>> ______________________________________________ >>> R-help at stat.math.ethz.ch mailing list >>> https://stat.ethz.ch/mailman/listinfo/r-help >>> PLEASE do read the posting guide! >>> http://www.R-project.org/posting-guide.html >> >> >> ______________________________________________ >> R-help at stat.math.ethz.ch mailing list >> https://stat.ethz.ch/mailman/listinfo/r-help >> PLEASE do read the posting guide! >> http://www.R-project.org/posting-guide.html > >
Ronnie Babigumira skrev:> Hi, I have done a search on this in vain. How can I add a note to the foot of a graph example belowCan you use this?: plot(1:10, 1:10, main = "Maintitle", sub = "subtitle") mtext("Another possibillity", side=4)> > |-----------------------| > | Title | > | -------- | > | | my | | > | | graph | | > | | | | > | | ______| | > |note: source | > |-----------------------| > > > Many thanks > > Ronnie
Closer to what Ronnie needs is: plot(1:10, 1:10, main = "Title") mtext("Note: source",side=1,line=4,adj=0) The line number may need adjustment. Best wishes John John Logsdon "Try to make things as simple Quantex Research Ltd, Manchester UK as possible but not simpler" j.logsdon at quantex-research.com a.einstein at relativity.org +44(0)161 445 4951/G:+44(0)7717758675 www.quantex-research.com On Tue, 27 Dec 2005, Ener Borg wrote:> Ronnie Babigumira skrev: > > Hi, I have done a search on this in vain. How can I add a note to the foot of a graph example below > > Can you use this?: > > plot(1:10, 1:10, main = "Maintitle", sub = "subtitle") mtext("Another > possibillity", side=4) > > > > > > > > > > > |-----------------------| > > | Title | > > | -------- | > > | | my | | > > | | graph | | > > | | | | > > | | ______| | > > |note: source | > > |-----------------------| > > > > > > Many thanks > > > > Ronnie > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html >
Many thanks John. John Logsdon wrote:> Closer to what Ronnie needs is: > > plot(1:10, 1:10, main = "Title") > mtext("Note: source",side=1,line=4,adj=0) > > The line number may need adjustment. > > Best wishes > > John > > John Logsdon "Try to make things as simple > Quantex Research Ltd, Manchester UK as possible but not simpler" > j.logsdon at quantex-research.com a.einstein at relativity.org > +44(0)161 445 4951/G:+44(0)7717758675 www.quantex-research.com > > > On Tue, 27 Dec 2005, Ener Borg wrote: > >> Ronnie Babigumira skrev: >>> Hi, I have done a search on this in vain. How can I add a note to the foot of a graph example below >> Can you use this?: >> >> plot(1:10, 1:10, main = "Maintitle", sub = "subtitle") mtext("Another >> possibillity", side=4) >> >> >> >> >> >> >> >>> |-----------------------| >>> | Title | >>> | -------- | >>> | | my | | >>> | | graph | | >>> | | | | >>> | | ______| | >>> |note: source | >>> |-----------------------| >>> >>> >>> Many thanks >>> >>> Ronnie >> ______________________________________________ >> R-help at stat.math.ethz.ch mailing list >> https://stat.ethz.ch/mailman/listinfo/r-help >> PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html >> > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html >