Skip to content
Back to formatted view

Raw Message

Message-ID: <1355919532240-4653515.post@n4.nabble.com>
Date: 2012-12-19T12:18:52Z
From: Massimo Bressan
Subject: triax.plot: control legend position and size of point labels

Given this example

library(plotrix)

a<-c(34,10,70)
b<-c(33,10,20)
c<-c(33,80,10)

test<-data.frame(A=a,B=b,C=c)

triax.plot(test, 
           main ="title",
           at=seq(0.25,0.75,by=0.25),
           tick.labels=list(l=seq(0.25,0.75,by=0.25),
                           r=seq(0.25,0.75,by=0.25),
                           b=seq(0.25,0.75,by=0.25)),
           align.labels=TRUE,
           show.grid=TRUE,
           cc.axes=TRUE,
           show.legend=TRUE,
           label.points=TRUE,
           point.labels=c("case 1","case 2", "case 3"),
           col.symbols=c("red","blue","green"),
           cex.ticks=0.8,
           cex.axis=0.8,
           lty.grid=2,
           pch=17
           )

I would like to control the position of the legend (to be moved to a
different place) and the size of point labels (to be reduced)

I?ve been trying to work out the solution with par() but without much
success, any help for this?

Thank you




--
View this message in context: http://r.789695.n4.nabble.com/triax-plot-control-legend-position-and-size-of-point-labels-tp4653515.html
Sent from the R help mailing list archive at Nabble.com.