我正在使用scatterplot3d
绘制数据集,我需要绘制一个包含它的圆柱体。最简单的方法是什么?
可以从here下载示例数据集。圆柱体应居中(100,100),半径为100。
这是我用来绘制点的代码:
library(ggplot2)
library(plotly)
require(plot3D)
library(rgl)
require(gridExtra)
library(scatterplot3d)
Data = read.table("data.txt")
X = as.numeric(unlist(Data[1]))
Y = as.numeric(unlist(Data[2]))
Z = as.numeric(unlist(Data[3]))
# 3D plot
scatterplot3d(X, Y, Z, pch = 16)