Displaying 3 results from an estimated 3 matches for "rfin".
Did you mean:
fin
2004 Jun 03
5
cameraa rotation graphics
Dear all,
Is there a camera rotation for 3d graphics in R. I have seen it in a
conference one time and thought it is pretty neat. the presenter was able
to rotate the 3d graph with dragging the mouse up down left right. If not
in R is there something that is open source that does this.
Thank you
Jean Eid
2006 Apr 25
1
Overlapping assignment
Is it valid to assign a slice of an array or vector to an overlapping
slice of the same object? R seems to do the right thing but I can't
find anything where it promises to.
> a <- 1:12
> a[4:12] <- a[1:9]
> a
[1] 1 2 3 1 2 3 4 5 6 7 8 9
> b <- 1:12
> b[1:9] <- b[4:12]
> b
[1] 4 5 6 7 8 9 10 11 12 10 11 12
2006 May 10
2
Legend titles in log plots broken? (ver. 2.2.1)
Legend titles work in linear plots:
curve(1/x, xlim = c(0, 1))
legend(x = 'topright', inset = 0.04,
legend = '1/x', lty = 1,
title = 'Legend Title')
But when you change to a log plot on either dimension things get screwy:
curve(1/x, xlim = c(0, 1), log = 'y')
legend(x = 'topright', inset = 0.04,
legend = '1/x', lty = 1,