R scatterplot3d()

1 개요[ | ]

R scatterplot3d()
  • "3D Scatter Plot → 3D 산점도"
R
Copy
library(scatterplot3d)
scatterplot3d(iris[,1:3])
Loading
R
Copy
library(scatterplot3d)
color = c("orange", "skyblue", "blue")[as.numeric(iris$Species)]
scatterplot3d(iris[,1:3], pch = 16, color=color)
Loading

2 같이 보기[ | ]

3 참고[ | ]