[R-sig-phylo] Plotting trees - 'main' does not seem to work

2010-12-29 Thread Steve L
I've tried plotting the example trees in the ape package as well as my own using the 'main' parameter to set the title of my plots, but no matter what I set the 'main' parameter to, it doesn't print any text above the plot. Is this a bug? Steve [[alternative HTML version deleted]]

Re: [R-sig-phylo] Plotting trees - 'main' does not seem to work

2010-12-29 Thread Liam J. Revell
Hi Steve, I have found the same thing with plot.phylo(). The same effect can be accomplished by the following two commands: plot(tree) # tree is your phylo object title(desired title) # desired title is what you would normally give to main You may have already figured this out, but in