[R] NMDS and varimax rotation

William Revelle lists at revelle.net
Wed Sep 10 01:56:08 CEST 2008


At 9:54 PM +0200 9/9/08, Bernd Panassiti wrote:
>hello,
>
>subsequently to a NMDS analysis (performed with metaMDS or isoMDS) is
>it possible to
>rotate the axis through a varimax-rotation?
>
>Thanks in advance.
>
>Bernd Panassiti


Bernd,


Yes.  The output of isoMDS is an object with points and stress.

consider the following example:

  test.data <- Harman74.cor$cov      #twenty four mental measurements
  harm.dist <- sqrt(2*(1- test.data) )  #convert correlations to distances
harm.iso <- isoMDS(harm.dist,k=2)  # find the multidimensional solution
harm.varimax <- varimax(harm.iso$points) #rotate with varimax
op <- par(mfrow=c(1,2))
plot(harm.iso$points, main="unrotated")
plot(harm.varimax$loadings,main="rotated")

Bill



>
>______________________________________________
>R-help at r-project.org mailing list
>https://stat.ethz.ch/mailman/listinfo/r-help
>PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
>and provide commented, minimal, self-contained, reproducible code.


-- 
William Revelle		http://personality-project.org/revelle.html
Professor			http://personality-project.org/personality.html
Department of Psychology             http://www.wcas.northwestern.edu/psych/
Northwestern University	http://www.northwestern.edu/
Use R for psychology                       http://personality-project.org/r



More information about the R-help mailing list