hi all,

You can use the functions mca of the library(MASS) and dudi.acm of the 
library(ade4).
these two functions are equivalent.

# exemple 1
require(MASS)
data(farms)
?mca
#analysis
mca1 <- mca(farms,nf=4)
mca1
# singular values
mca1$d
# eigenvalues
(mca1$d)^2
# graphic
plot(mca1)

# example 2
require(ade4)
?dudi.acm
#analysis
mca2 <- dudi.acm(farms,nf=4, scannf=F)
mca2
# singular values
sqrt(mca2$eig[1:4])
# eigenvalues
mca2$eig[1:4]
#graphic
x11()
scatter(mca2)


hope this help ;')



P.BADY




At 14:07 07/04/2005 +0200, Faouzi LYAZRHI wrote:
>bonjour,
>Je voudrais faire une analyse des correspondances multiples avec R. avec 
>les représentation graphiques correspondantes  avec R.
>je ne sais pas comment procéder ..
>en vour remerciant par avance
>Faouzi
>
>______________________________________________
>R-help@stat.math.ethz.ch mailing list
>https://stat.ethz.ch/mailman/listinfo/r-help
>PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Pierre BADY             <°)))))><
Université Claude Bernard Lyon 1
UMR CNRS 5023, LEHF
bat Alphonse Forel
43 boulevard du 11 novembre 1918
F-69622 VILLEURBANNE CEDEX
FRANCE
TEL : +33 (0)4 72 44 62 34
FAX : +33 (0)4 72 43 28 92
MEL : [EMAIL PROTECTED]
http://limnologie.univ-lyon1.fr
http://pierre.bady.free.fr (in construction)

        [[alternative HTML version deleted]]

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

Reply via email to