I have got many plots of spectral data with the persp3d
function and with open3d
I am able to open them in different windows (see below).
My question is if there is a possibility to open them up in the same window, by giving a number of rows and columns?
And if so, is there furthermore the possibility that the rotation I do with the mouse applies to all the displayed plots?
Below I have already found a way to open them up in different windows without overlapping so I can examine them separately (in the code: "t_number" and "w" are vectors corresponding to the "Fnumber" matrix respectively).
I tried doing it with the plot3d
and the mfrow3d
command, resulting in one window with many plots (like the answer posted to this question, but the plot3d function is not capable of giving sufficient data plots (the spectral data does not look alike the same data as in persp3d
).
open3d(
persp3d(t_134, w, F134, col = col,
xlab = "", ylab = "", zlab = "", main = "F134",
)
)
open3d(
persp3d(t_135, w, F135, col = col,
xlab = "", ylab = "", zlab = "", main = "F135"
)
)
[...]
How can I plot them in one window and rotate them all the same?