
Last chance! 50% off unlimited learning
Sale ends in
Draw the Hierarchical Multiple Factor Analysis (HMFA) graphs
# S3 method for HMFA
plot(x, axes = c(1,2),num=6, choix = "ind",
lab.grpe = TRUE, lab.var = TRUE, lab.ind.moy = TRUE,
invisible = NULL, lim.cos2.var = 0.,
xlim = NULL, ylim = NULL, cex = 1, title = NULL, new.plot = FALSE, ...)
Returns the individuals factor map and the variables factor map.
an object of class HMFA
a length 2 vector specifying the components to plot
number of grpahs in a same windows
a string corresponding to the graph that you want to do ("ind" for the individual or categorical variables graph, "var" for the quantitative variables graph, "axes" for the graph of the partial axes, "group" for the groups representation)
boolean, if TRUE, the label of the groups are drawn
boolean, if TRUE, the label of the variables are drawn
boolean, if TRUE, the label of the mean points are drawn
list of string; for choix ="ind", the individuals can be omit (invisible = "ind"), or the centers of gravity of the categorical variables (invisible= "quali")
value of the square cosinus under with the points are not drawn
range for the plotted 'x' values, defaulting to the range of the finite values of 'x'
range for the plotted 'y' values, defaulting to the range of the finite values of 'y'
cf. function par
in the graphics package
string corresponding to the title of the graph you draw (by default NULL and a title is chosen)
boolean, if TRUE, a new graphical device is created
further arguments passed to or from other methods
Jeremy Mazet, Francois Husson Francois.Husson@agrocampus-ouest.fr
HMFA
data(wine)
hierar <- list(c(2,5,3,10,9,2), c(4,2))
res.hmfa <- HMFA(wine, H = hierar, type=c("n",rep("s",5)), graph = FALSE)
plot(res.hmfa, invisible="quali")
plot(res.hmfa, invisible="ind")
Run the code above in your browser using DataLab