How to plot 3D scatter diagram using ggplot?

MrYelameli picture MrYelameli · Jul 12, 2017 · Viewed 53.2k times · Source

I tried to use the plotly package, but it is not working in my case at all. The ggplot package is working for 2D plots but it is giving an error when adding one more axis. How to solve this issue?

ggplot(data,aes(x=D1,y=D2,z=D3,color=Sample)) +
  geom_point()

How to add one more axis and get the 3D plot in this?

Answer

onlyphantom picture onlyphantom · Aug 12, 2018

Since you tagged your question with plotly and said that you've tried to use it with plotly, I think it would be helpful to give you a working code solution in plotly:

Creating some data to plot with:

set.seed(417)
library(plotly)
temp <- rnorm(100, mean=30, sd=5)
pressure <- rnorm(100)
dtime <- 1:100

Graphing your 3d scatterplot using plotly's scatter3d type:

plot_ly(x=temp, y=pressure, z=dtime, type="scatter3d", mode="markers", color=temp)

Renders the following: enter image description here

ggplot as others have note, by itself does not support 3d graphics rendering.