Thanks vito
I was aware of movie15 but the point is how to get a U3D or VRLM file out of R
:/
I don't know those two standards, nor I know the usual format for R 3D plots ...
And unfortunately I am a bit in a rush so no way, right now, to do some reverse
engineering about plot file format in or
This does not answer exactly to your question, anyway..:
If you are planning to use latex, the package movie15 allows to include
media files in your document (to be processed via pdflatex)
vito
Bruno C. wrote:
> With version 8 of acrobat reader, it is now possible to have 3D in PDf
> documen
On 7/11/2007 9:18 AM, Bruno C. wrote:
> With version 8 of acrobat reader, it is now possible to have 3D in PDf
> documents.
> Does it exist already an R package who manage to produce 3D plots which can
> be saved as interactive 3D graphs in a PDF file?
No, not as far as I know. If you want to h
With version 8 of acrobat reader, it is now possible to have 3D in PDf
documents.
Does it exist already an R package who manage to produce 3D plots which can be
saved as interactive 3D graphs in a PDF file?
Best Regards
Bruno Cavestro
--
Legg
>
About 3D plots:
http://finzi.psych.upenn.edu/R/Rhelp02a/archive/6439.html
Many other plot examples:
http://addictedtor.free.fr/graphiques/allgraph.php
I used rgl, it can produce interactive plots, which can be rotated, increased
and decreased with the mouse.
> Hi all R users,
>
> I want t
Hi all R users,
I want to draw a 3D plot, where the Z-axis will represent the normal
densities each with zero mean but different volatilities, Y-axis will
represent the SD [volatilities), and X-axis will represent time at which
these SD are calculated.
Can anyone give me any clue? Your help will
On Tue, 8 Mar 2005 01:50:04 -0600, <[EMAIL PROTECTED]> wrote :
>Hello R-users!
>
>I am trying to plot 3 vectors (x,y,z) of observations
>generated by mvrnorm in library(MASS).
>
>I tried plot3d in library(djmrgl) and scatterplot3d.
>But these program gives x,y,z axis which do not
>intersect at th
Hello R-users!
I am trying to plot 3 vectors (x,y,z) of observations
generated by mvrnorm in library(MASS).
I tried plot3d in library(djmrgl) and scatterplot3d.
But these program gives x,y,z axis which do not
intersect at the origin (0,0,0).
I searched through all the graphics related packages
On Thursday 03 March 2005 13:04, Ross Clement wrote:
> Hi. I'm trying to create a 3d plot for a teaching example of finding
> a least-squares estimate of the parameters to fit a line to some
> data. I was hoping to get a nice plot with a clear, single minima
> where the derivative of the surface is
Hi. I'm trying to create a 3d plot for a teaching example of finding a
least-squares estimate of the parameters to fit a line to some data. I
was hoping to get a nice plot with a clear, single minima where the
derivative of the surface is zero. No matter how much I tinker, I can't
seem to get a sim
Another possibility (to plug my own stuff) is to use the "LG3d" package
in my bbmisc package (http://www.zoo.ufl.edu/bolker/R/src for source,
http://www.zoo.ufl.edu/bolker/R/windows/ for precompiled windows package),
which uses the Live3D java applet to display (rotatable etc.) graphics in
a
On Wed, 17 Sep 2003, Thomas W Blackwell wrote:
> Perhaps MZodet wants the interactive, mouse controlled rotation
> capability offered by ggobi ? Designed for linux
> but advertises "better portability to Microsoft Windows".
> I have no experience myself either installing or using this.
It doesn
Thomas W Blackwell wrote:
Perhaps MZodet wants the interactive, mouse controlled rotation
capability offered by ggobi ? Designed for linux
but advertises "better portability to Microsoft Windows".
I have no experience myself either installing or using this.
In that case we might want to point MZ
Perhaps MZodet wants the interactive, mouse controlled rotation
capability offered by ggobi ? Designed for linux
but advertises "better portability to Microsoft Windows".
I have no experience myself either installing or using this.
- tom blackwell - u michigan medical school - ann arbor -
[EMAIL PROTECTED] wrote:
How do I rotate 3D plots/surfaces generated by either cloud or wireframe?
wireframe - I think you have to set the screen parameter, see the
example from ?wireframe, it seems to me you can rotate the surface as
you like.
I believe it's the same thing for cloud, but I did
Hello MZodet,
Wednesday, September 17, 2003, 2:14:12 PM, you wrote:
Mag> How do I rotate 3D plots/surfaces generated by either cloud or wireframe?
wireframe has the screen parameter which reads a list to rotate ...
something in this kind:
wireframe(object, screen = list( x = 5, y = 5 , z= 10)
How do I rotate 3D plots/surfaces generated by either cloud or wireframe?
Thanks.
Marc
Marc W. Zodet, MS
Health Statistician
Agency for Healthcare Research and Quality
[[alternative HTML version deleted]]
__
[EMAIL PROTECTED] m
Have you considered "contour", "persp", and "image", in package(base)
and "contourplot", "levelplot" in package(lattice)? See the
documentation and Venables and Ripley (2002) Modern Applied Statistics
with S, 4th ed. Springer).
hope this helps. spencer graves
Rafael Bertola wrote:
Hi,
I've
Hi,
I've used the Mathematica to produce 3D graphics, contour plots of a
bivariate normal distribution
Now I want make these graphics in R, but i do not know how.
I would like to:
- Plot a 3D graph for some different variance matrix
- Plot the contour plots
- Find and try to plot (in the 3d graph
On Fri, Jul 11, 2003 at 01:49:37PM -0700,
I finally managed to do what I originally wanted. I would like to
thank the help I received from Jerome Asselin and Peter Dalgaard. Here
it is:
levelpersp <- function(x, y, z, colors=topo.colors, ...) {
## getting the value of the midpoint
zz <- (z[-
Hi,
Consider this example which I have modified from the persp() help file.
It uses topo.colors() to create a series of colors.
Cheers,
Jerome
x <- seq(-10, 10, length= 30)
y <- x
f <- function(x,y) { r <- sqrt(x^2+y^2); 10 * sin(r)/r }
z <- outer(x, y, f)
z[is.na(z)] <
I would like a 3d plot of a matrix such that individual trapezoids
that make up the surface are colored according to the z-value of that
point (or preferably the midpoint of its four corners, or something
similar). MS Excel has something like that.
I know that persp can have an nx by ny matrix its
22 matches
Mail list logo