Aggregate the corresponding xyz values of xyz values for each xyz group by given function.
aggregateXYZs(xyz.list, FUN = mean, na.rm = FALSE, ...)A list of xyz.
xyz <- data.frame(x=1:10, y=1:10, z=1:10)
xyzs <- list(list(a=xyz[c(1, 3, 5, 7, 9), ],
b=xyz[c(2, 4, 6, 8, 10), ]))
out <- aggregateXYZs(xyzs)