Also, library(ade4) Best Marwan ------------------------------------------------------------------- Marwan Khawaja http://staff.aub.edu.lb/~mk36/ -------------------------------------------------------------------> -----Original Message----- > From: r-help-bounces at stat.math.ethz.ch > [mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Prof > Brian Ripley > Sent: Thursday, April 07, 2005 3:45 PM > To: Faouzi LYAZRHI > Cc: R-help at stat.math.ethz.ch > Subject: Re: [R] analyse des correspondances multiples > > library(MASS) > ?mca > > On Thu, 7 Apr 2005, Faouzi LYAZRHI wrote: > > > 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 > > -- > Brian D. Ripley, ripley at stats.ox.ac.uk > Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ > University of Oxford, Tel: +44 1865 272861 (self) > 1 South Parks Road, +44 1865 272866 (PA) > Oxford OX1 3TG, UK Fax: +44 1865 272595 >
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
library(MASS) ?mca On Thu, 7 Apr 2005, Faouzi LYAZRHI wrote:> 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-- Brian D. Ripley, ripley at stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272866 (PA) Oxford OX1 3TG, UK Fax: +44 1865 272595
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.htmlPierre 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 : pierre.bady@univ-lyon1.fr http://limnologie.univ-lyon1.fr http://pierre.bady.free.fr (in construction) [[alternative HTML version deleted]]