Federico Calboli wrote:
Dear All,

I would like to ask how to customize the graph corresponding to a
procrustes analysis.


<SNIP>


The object returned by procrustes() contains Yrot and X, the rotated matrix and the target matrix respectively. You could plot both of these using standard plotting tools. You'll need to make the axes have the same scale.

plot(mod.pro$Yrot, asp = 1)
points(mod.pro$X, col = "red", pch = 16)

Which seems to get you a similar plot to the one plot(mod.pro) produces.


Regards,


Federico Calboli

HTH


Gavin

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to