R scatterplot3d()

Jmnote (토론 | 기여)님의 2020년 11월 1일 (일) 19:43 판 (→‎같이 보기)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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 참고[ | ]