Displaying 20 results from an estimated 9000 matches similar to: "'persp' but only axes"
2007 Mar 16
2
Can I scale the labels in a 'persp' graph?
Hi all:
I'm using 'persp' for 3D graphics.
I need the axis's labels smaller than by defect.
I see in 'help()', the information about 'par()'.
I have wrote:
>par(.....,cex.axis=0.5,cex.lab=0.5)
perspc(.................)
and the result don't change.
The question is: Can I change the size of labels in the perps graph??
Thank you in advance:
/salva
2007 Mar 16
2
Can I scale the labels in a 'persp' graph?
Hi all:
I'm using 'persp' for 3D graphics.
I need the axis's labels smaller than by defect.
I see in 'help()', the information about 'par()'.
I have wrote:
>par(.....,cex.axis=0.5,cex.lab=0.5)
perspc(.................)
and the result don't change.
The question is: Can I change the size of labels in the perps graph??
Thank you in advance:
/salva
2007 Jun 04
2
inverse cumulative distribution
hi all:
ecdf() is the empirical cumulative distribution function, but I need the
INVERSE cumulative distribution.
how can I calculate it?
thank you in advance
/salva
2010 Apr 26
1
I can't with expression
Hi all,
I need an R expression, expression(....) to get the follows Latex code:
$P^\uparrow_{SF}$.
Imposible, for me!!.
Thank you in advance
/salva
2007 Jul 23
2
persp and greek symbols in the axes labels
Hello,
I am plotting a 3D function using persp and I would like to use greek
symbols in the axes labels.
I have found examples like this one on the web:
plot(0,0,xlab=expression(kappa[lambda]),ylab=substitute(paste(phi,"=",true,sigma),list(true=5)))
this works well with plot but not with persp:
with the command
persp(M,theta = -20,phi =
2003 Jun 05
1
persp(), par() and axis()
Dear R experts,
On explanation of persp() parameters the last item is:
...: additional graphical parameters (see `par').
However, setting the `tcl' parameter has no any effect.
I guess that axes are added to persp() in somewhat freakish
way, and have nothing in common with axis() function.
I found the very useful trans3d() function in persp() help
page, and I'd like to use it
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)
2009 May 27
1
contour lines on persp plot
Hello folks,
I am a beginner R user. I have been able to make a 3D surface plot using
'persp'. The surface is made by a grid of lines emanating perpendicularly
from each of the x and y axes at regular intervals.
I can get rid of that grid by setting 'border=NA'.
Can anyone suggest some ways to replace the grid with contour lines, to
create a 3-dimensional contour map?
Thanks
2006 May 08
1
persp or wireframe 3D plot: how can I independently adjust linewidth of the 'surface' and framebox?
It is a trivial matter to adjust the linewidth of the axes and plot
line in a 2D plot:
x <- 1:10;
y <- 1:10;
par(lwd=2); # axis (and others) linewidth
plot(x,y,"l",lwd=6); # plot linewidth
Is there anything comparable to this for persp or wireframe? I've
tried a number of ways, and the framebox/axes seem to be linked to
the linewidth used in generating the
2005 May 30
1
persp, add lines/highlights
Hello R-sters,
I'm trying to add several lines to a response surface that I've plotted
using persp(). I've tried lines() using the "trans3d" function but I've
been unsuccessful in getting it to work (R v2.0.1). Essentially, I'm
trying to highlight one or more of the surface wireframe lines in a
bolder (or different) color. Any tips from those of you who have some
2005 Apr 12
1
persp plot
Is there a way to mark specific tick points on x, y and z axes?
Also, I'm trying to overlay a persp plot using the command lines(..) but it doesn't appear to work, does anyone know why?
I'm also trying to rotate the persp plot using rotation but this doesn't work either? I get the error
parameter "rotation" couldn't be set in high-level plot() function
does
2005 Mar 16
1
Help in persp (VERY URGENT ASSISTANCE)
Dear All,
I am very new to R projects.May be i am wrong in some steps.I have given the code which i tried for drawing 3d surface using persp.I need to label the axes with scales
z <- array(topnew2$V2, dim=c(600,2))
x <- 10 * (1:nrow(z))
y <- (1:ncol(z))
persp(x, y, z, theta = 30, phi = 30, expand = 0.5, col = "lightblue", xlab ="fluidlevel", ylab
2004 Oct 03
1
help working with persp plot function
Hi,
I don't understand why this is not working. Help is appreciated.
I need to plot the following as a surface, but persp returns an error.
tpcp_xy[1:10,]
X_COORD Y_COORD TPCP
1 465459.7 175924.1 0.85
2 466145.8 324017.3 2.30
3 467720.2 372143.1 1.56
4 470293.2 348064.8 2.87
5 476566.9 205501.8 0.94
6 477774.9 142561.0 1.31
7 479207.0 162919.6 3.04
8 480890.8 290641.3 2.20
9
2006 May 09
2
RFC: log='z' for image, contour, persp?
I've been thinking of adding the possibility of including "z" among the
axes to be logged in image, contour, and persp. In the first two, it
would only affect where the breaks were set if they are calculated
automatically; it would have a bigger effect in persp.
For example,
image(x, y, z, log="z")
would set 12 colours evenly spaced on a log scale of the z values.
1999 Jan 19
1
axis labels and ticks in persp
1. This doesn't work
persp(x,y,z,col="grey",xlab="x",ylab="y",zlab="z")
but I can get axis lables on x and y by
persp(x,y,z,col="grey")
title(xlab="x", ylab="y")
BUT I can't figure out how to get a label for z. How to do it?
2. To be be consistent with image(), I think persp should make z the axis
it now calls y (and
2008 Jun 24
2
persp plot
I have a set of data in the form
x1, y1, z1
x1, y2, z2
...
x1, yN, zN
x2, y1, z(N+1)
x2, y2, z(N+2)
...
x2, yN, z(2N)
...and so on...
xM, yN, val(M*N)
I have been trying to figure out how to get R to use this data in a
persp plot. So far the only thing that I can figure out to do is to
break the data file into three different files. The first file
contains the x-coordinate data:
x1
x2
2007 Feb 05
5
Beginner Question on Persp()
I recently downloaded R for Windows, running on Win XP. I'm trying to create
a perspective plot but not having any luck after reading the R manual and
several examples found on the Internet.
I have a 100 x 100 matrix of Z data as a tab-delimited text file exported
from Minitab. I read this in to R using read.delim; this seemed to go ok.
I created X and Y using seq() to get 100 divisions
2004 Oct 26
1
persp(), scatterplot3d(), "..." argument
Hello list.
I very often need 3d scatterplots, and use scatterplot3D quite a lot.
I am trying to modify persp() to plot scatterplots, and make use of
the theta and phi arguments that persp() offers. I am having some
difficulty passing the correct arguments to persp().
Here is my function so far. Much of it is copied from the persp() manpage.
points3d <- function(x,y,z,
2004 Oct 26
1
persp(), scatterplot3d(), "..." argument
Hello list.
I very often need 3d scatterplots, and use scatterplot3D quite a lot.
I am trying to modify persp() to plot scatterplots, and make use of
the theta and phi arguments that persp() offers. I am having some
difficulty passing the correct arguments to persp().
Here is my function so far. Much of it is copied from the persp() manpage.
points3d <- function(x,y,z,
2009 Mar 29
2
number of ticks in a persp() plot
Hi, I am trying to specify four ticks (at 0,1,2,3 for the y axis) in a persp
plot but the defaults overrule my specification and I obtain seven of them.
Is it possible to gain full control over them in such a plot? Here is my
code:
matlines=matrix(c(1:7,3:9,3:9,2:8),nrow=7,ncol=4)