Displaying 6 results from an estimated 6 matches for "habillage".
2011 Jan 11
0
modified FAST Script from package SensoMineR for the R community - Reg
...MCA2 is required.
## library(maptools) need to be called before calling the functions.
###plot.MFA2 Function
plot.MFA2<-
function (x, axes = c(1, 2), choix = "ind", ellipse = NULL, ellipse.par =
NULL,
lab.grpe = TRUE, lab.var = TRUE, lab.ind.moy = TRUE, lab.par = FALSE,
habillage = "ind", col.hab = NULL, invisible = NULL, partial = NULL,
lim.cos2.var = 0, chrono = FALSE, xlim = NULL, ylim = NULL,
cex = 1, title = NULL, palette = NULL, new.plot = TRUE, ...)
{
res.mfa <- x
if (!inherits(res.mfa, "MFA"))
stop("non conveni...
2013 Nov 17
4
FactoMineR
...ity)
library(epicalc)
des(mortality) #Agregue esto para comparar las dos datas
res<-MFA(mortality,group=c(9,9),type=c("f","f"), # REALIZA EL ANÁLISIS BIEN
name.group=c("1979","2006"))
plot(res,choix="freq",invisible="ind",habillage="group")
#CON LA TABLA ORGINAL en csv NO NOS FUNCIONA, ?algo nos falta?
rm(list = ls())
setwd("D:/Public/Documents/R/FactoMineR/")
mortality<-read.csv("mortality.csv",header=TRUE,sep=",", dec=".")
library(epicalc)
des(mortality) #Agr...
2013 Nov 17
1
FactoMineR
...las dos datas
> >
> > res<-MFA(mortality,group=c(9,9),type=c("f","f"), # REALIZA EL ANÁLISIS
> > BIEN
> >
> > name.group=c("1979","2006"))
> >
> > plot(res,choix="freq",invisible="ind",habillage="group")
> >
> >
> >
> > #CON LA TABLA ORGINAL en csv NO NOS FUNCIONA, ?algo nos falta?
> >
> >
> >
> > rm(list = ls())
> >
> > setwd("D:/Public/Documents/R/FactoMineR/")
> >
> > mortality<-read.csv("...
2010 Feb 24
1
how to label individuals with FactoMiner ?
Dear all,
i'm trying to label specific individuals (supplementary ones) after a PCA with the FactoMiner package. There is not much details (possibilities?) in the R-help of the plot.pca function. There is indeed a "label" parameter but i could only manage to label the supplementary individuals with there "row.names" (i.e. label="indiv.sup") and not with the
2013 Nov 17
0
FactoMineR
...ality) #Agregue esto para comparar las dos datas
>
> res<-MFA(mortality,group=c(9,9),type=c("f","f"), # REALIZA EL ANÁLISIS
> BIEN
>
> name.group=c("1979","2006"))
>
> plot(res,choix="freq",invisible="ind",habillage="group")
>
>
>
> #CON LA TABLA ORGINAL en csv NO NOS FUNCIONA, ?algo nos falta?
>
>
>
> rm(list = ls())
>
> setwd("D:/Public/Documents/R/FactoMineR/")
>
> mortality<-read.csv("mortality.csv",header=TRUE,sep=",", dec=&quo...
2013 Dec 04
2
AYUDA CON ERROR CON LA LIBRERIA PCA
Cordial saludo adjunto la base de datos y el script:
eu60<- read.csv(file.choose(), header=T, sep=";", dec=".", row.names=1)
eu60.pca <- PCA(eu60, quali.sup=19)
eu60.data <- cbind.data.frame(eu60[,19], eu60.pca$ind$coord)
eu60.ellipse <- coord.ellipse(eu60.data, bary=TRUE)
plot.PCA(ellipse=eu60.ellipse, cex=0.8)
El 4 de diciembre de 2013 17:35, Camilo Calle