I've performed a procrustes analysis on 164 files of wing shape data each with 8 landmarks using;
Procrustescoords <- list()
for (a in 1:length(flightfiles)){
Procrustescoords <-c(Procrustescoords,gpagen(array(data=Flights[,,a],dim=c(8,2,1)), Proj= TRUE, ShowPlot = TRUE, ProcD = TRUE, PrinAxes = TRUE, curves = NULL, surfaces = NULL)[1])
Which produces outputs for each individual of;
$coords
, , 1
[,1] [,2]
[1,] -0.46629916 0.01094528
[2,] -0.17442692 0.07026679
[3,] 0.17749109 0.10209531
[4,] 0.35896138 0.02312385
[5,] 0.36198915 0.01257036
[6,] 0.28832972 -0.05956911
[7,] 0.03323332 -0.14496370
[8,] -0.57927857 -0.01446878
The output of str(Procrustescoords) is;
> str(Procrustescoords)
List of 164
$ coords: num [1:8, 1:2, 1] 0.493 0.315 -0.269 -0.269 -0.269 ...
$ coords: num [1:8, 1:2, 1] 0.472 0.197 -0.1 -0.364 -0.371 ...
$ coords: num [1:8, 1:2, 1] -0.485 -0.134 0.115 0.355 0.359 ...
$ coords: num [1:8, 1:2, 1] 0.39136 0.30866 0.05409 -0.0059 -0.00196 ...
$ coords: num [1:8, 1:2, 1] 0.479 0.309 -0.188 -0.327 -0.33 ...
$ coords: num [1:8, 1:2, 1] 0.107 0.149 0.267 0.29 0.288 ...
$ coords: num [1:8, 1:2, 1] 0.496 0.202 -0.236 -0.309 -0.327 ...
$ coords: num [1:8, 1:2, 1] 0.488 0.2 -0.249 -0.317 -0.33 ...
...and so on for all 164 individuals
I am now looking to reformat the output coordinates into a table where each row is an individual (file) and the coordinates are presented as columns such as "X1", "Y1", "X2", "Y2",... "X8", "Y8". So far I am really struggling how to do this.
Any help would be great. Thanks
I managed to solve this using