Questions tagged [plot3d]

plot3D is a package for use with R that includes functions for visualizing 2-D and 3-D data, including perspective plots, slice plots, surface plots, and scatter plots.

plot3D is an R package that includes functions for visualizing 2-D and 3-D data. Many of the functions are extensions of R’s persp() or image() functions.

The package can be used to make 3D scatter plots, surface plots, slice plots, and to visualize oceanographic data.

Repositories

Vignettes

Related Packages

  • Package (also includes the plot3D() function)
  • Package (Plots a three dimensional (3D) point cloud.)
  • Package plot3Drgl (The 'rgl' implementation of plot3D functions.)
94 questions
0
votes
0 answers

R: plot3d - How to sort x and y variables while keeping z associated with the correct pair?

I'm attempting to plot a surface in 3 dimensions using plot3D but I'm running into problems. I'm hoping you guys could help or at least point me in the right direction. I'm open to using a different package if that's the solution. I'm reading in a…
jrp355
  • 83
  • 8
-1
votes
1 answer

how to transform/stretch/shear a plot in maple with plot3d

here is my question. test:=v^3; plot3d(test,u=0..1-v, v=0..1); How can I transform this plot in the right triangle into an equilateral triangle? So that the three edges of the plot are the same length. I wanna, squish it, or shear? any tools i…
Jun Zhou
  • 5
  • 2
-1
votes
2 answers

How i can plot a 3d histogram in R?

I have a table with numbers and can plot a 3d histogram in excel. Here is my histogram in excel: How can i do the same in R with plot3d? In their example they are use 3 digits for x, y, z. Here their dataset and histogram in R: But i have only one…
navy
  • 159
  • 9
-2
votes
1 answer

How to create a 3d plot using two separate datasets? in R

I have two separate datasets that I would like to plot in both a scatterplot3d and a plot3d in r How can I do that? I can make the two plots for the datasets individually with just the following: H <-as.numeric(Dataset$Height) D <- Dataset$Dose W…
1 2 3 4 5 6
7