Displaying 5 results from an estimated 5 matches for "perspp".
Did you mean:
persp
2001 Oct 12
2
adding text to persp
Any ideas on adding text to persp plots? The perspp function from S-plus
is not implemented. I'm using R1.3.0 on Win2000.
Thanks,
Sundar
--
Sundar Dorai-Raj, Ph.D.
Assistant Professor
Discrete & Statistical Sciences Office: (334) 844-3647
231 Allison Lab Fax: (334) 844-3611
Auburn University Email: dora...
2004 Dec 02
1
Arrow and text on a 3d plot
...e, for
example: a short arrow starting on the maximum point, with slope 45??
and finishing near the top-edge of the plot.
b) how to add a typical text at the end of the arrow, as "this is the
maximum point", as described in the above reference.
N.B.: the author used the S function "perspp", but R does not have it.
Could anyone help me?
Thank you very much in advance.
Arturo De Zan
PhD candidate
UPC-Universitat Politecnica de Catalunya
Barcelona, Spain.
2003 Dec 25
6
Plot a sphere
Hi,
I'm new to R (and math ;) Would somebody please be so kind as to direct me
in plotting a 3D sphere?
I tried something in the lines of:
####
y <- x <- seq(-pi, pi, length=pi*10)
f <- function(x,y)
{
z <- sqrt(pi - x^2 - y^2)
#z[is.na(z)] <- 0
z
}
z <- outer(x, y, f)
persp(x, y, z, theta = 120, phi = 30)
####
I've also tried: .... make.surface.grid(...) ..
1999 Dec 06
1
No subject
Hi,
can anyone help with two questions concerning persp?
(1) Is there a function in R to project points onto a persp() plot, as is in
S+ (perspp() I think) ?
(2) How can I label and tickmark axes x,y and z in a persp plot?
(I am still using RW065)
Thanks for any help
--
Dr. Jens Oehlschl?gel-Akiyoshi
MD FACTORY GmbH
Bayerstrasse 21
80335 M?nchen
Tel.: 089 545 28-27
Fax.: 089 545 28-10
http://www.mdfactory.de
-.-.-.-.-.-.-.-.-.-.-.-....
2001 Aug 07
1
multiple persp plots
Hello,
I would like to plot two superposed surfaces (original data, and smoothed
models). Basically, I would like to create a usual persp plot with box, and
then superpose a second surface (without box and axes) on the top plane of
the box defined by the first graph. I don't know if it is clear :-(
Is it possible to draw such a second surface in an existing persp plot in R?
Another (related)