Re: [R-sig-phylo] suppress axes in phenogram()

2016-07-07 Thread GRAHAM JAMES SLATER
try: par(xaxt="n",yaxt="n") phenogram(tree,x) par(xaxt="s",yaxt="s") axis(1) Graham -- Graham J. Slater Assistant Professor Department of the Geophysical Sciences University of Chicago 5734 S. Ellis Avenue Chicago, IL 60637 USA Tel: (773)

Re: [R-sig-phylo] suppress axes in phenogram()

2016-07-07 Thread Jacob Berv
My ugly solution is to comment out lines 195 and 196 in the phenogram code. Jake > On Jul 7, 2016, at 5:06 PM, Jacob Berv wrote: > > Cool - that works - but now I can’t use axis() to add custom axes… > Jake > >> On Jul 7, 2016, at 5:03 PM, Liam J. Revell