joining files after canonical correlation
Brett Stansfield wrote:
Dear R, I recently did a canonical correlation analysis on two subsets of data (location and weather). So I now have canonical scores for location and weather. but I'd now like to do a scatterplot matrix using the pairs statement. Is there a way to somehow join location.U and weather.V to become a new data set from which I could undertake a scatterplot matrix of the canonical variates?
cbind() can create a matrix by binding together the columns of two (or more) input matrices. Duncan Murdoch