x<- -10:10
y<- x^2
plot(x,y,t='l',asp=0.1)
text(1,1,'foo',srt= 180/pi*atan(2) )
text(-1,1,'bar',srt= (180/pi*atan(2/10)))
Get the width and height of the print area in inches ...
ff <- par("pin")
ff[2]/ff[1]
Now resize the chart manually ...
ff <- par("pin")
ff[2]/ff[1]
par("usr")
,
... MASS::eqscplot .