我正在使用hypervolume包来构建n维空间中的超体积。
当在“Hypervolume”或“HypervolumeList”类的对象上操作plot()时,我无法弄清楚如何调整3d绘图。参数列在package documentation for function'plot.HypervolumeList'(第21页)中。
使用包中包含的数据的示例:
# Call data and run routine that will create a HypervolumeList
require(hypervolume)
data(finch)
doHypervolumeFinchDemo = T
demo(finch)
# Create 3d plot of HypervolumeList
plot(hv_finches_list, pairplot = F)
具体问题如下。包含我尝试过的代码 - 但不起作用。
如何更改数据点的大小?
plot(hv_finches_list, pairplot = F, cex.data = 5)
如何选择是否绘制均匀随机点?
plot(hv_fiches_list, pairplot = F, showrandom = T)
是否可以在3d图中添加质心或轮廓?
plot(hv_finches_list, pairplot = F, showcentroid = T)