Skip to content
Prev 228110 / 398500 Next

par("uin") ?

Michael,
I have a very old version of some brace functions somewhere.
I never did combine them into a single function, so there's
one each for left/right/up/down braces. (I used them in
teaching regression to show resids and formulae.)

If you're interested, I'll dig 'em up and send them.

Otherwise, I think you can make your inherited code work
with something like

Usr <- par('usr')
Pin <- par('pin')
dux <- Usr[2] - Usr[1]
duy <- Usr[4] - Usr[3]
uin <- c(dux,duy)/Pin

to replace

  uin <- par("uin")

But you'll also have to fiddle with atan()

   -Peter Ehlers
On 2010-07-19 9:20, Michael Friendly wrote: