From the following code
D<-matrix(rnorm(100),10,10)
layout(matrix(c(1,2),ncol=1), widths=c(4,1), heights=1.2)
scatter3D(D[,1],D[,2],D[,3],colkey = FALSE)
plot(D[,1],type="l")
I get the following plot here. I would like that the scatter3D plot completely fits the layout portion assigned to it. How may I do this?