The advent of decent graphics within Statalist makes some questions likely to be clearer than previously. A command of mine eofplot from SSC plots loadings or coefficients after pca or factor as they vary with original variables. Here is a dopey example, but for it to work you need to install the program first.

My questions:
1. Is anyone familiar with this kind of plot under a different name? (I collect names of graphs more or less as I collected postage stamps around age 9.)
My name eofplot was inspired by the terminology empirical orthogonal function but is otherwise arbitrary.
2. Does any have example references of similar plots? I've found, for example, use of this plot very patchy in multivariate literature, even though it is often more helpful than some more widely used plots of PCA or factor analysis results. (In this example, it is clear that PC1 is essentially an average of the input variables, and thus an overall measure of vehicle size.)
Code:
ssc inst eofplot sysuse auto, clear pca headroom trunk weight length displacement eofplot, number xsc(r(0.8 5.2)) mlabsize(*1.4 ..) xla(, grid) yla(, ang(h))
My questions:
1. Is anyone familiar with this kind of plot under a different name? (I collect names of graphs more or less as I collected postage stamps around age 9.)
My name eofplot was inspired by the terminology empirical orthogonal function but is otherwise arbitrary.
2. Does any have example references of similar plots? I've found, for example, use of this plot very patchy in multivariate literature, even though it is often more helpful than some more widely used plots of PCA or factor analysis results. (In this example, it is clear that PC1 is essentially an average of the input variables, and thus an overall measure of vehicle size.)
Comment