Plot.MFA {MVar} | R Documentation |
Graphics of the Multiple Factor Analysis (MFA).
Description
Graphics of the Multiple Factor Analysis (MFA).
Usage
Plot.MFA(MFA, titles = NA, xlabel = NA, ylabel = NA,
posleg = 2, boxleg = TRUE, size = 1.1, grid = TRUE,
color = TRUE, groupscolor = NA, namarr = FALSE,
linlab = NA, savptc = FALSE, width = 3236,
height = 2000, res = 300, casc = TRUE)
Arguments
MFA |
Data of the MFA function. |
titles |
Titles of the graphics, if not set, assumes the default text. |
xlabel |
Names the X axis, if not set, assumes the default text. |
ylabel |
Names the Y axis, if not set, assumes the default text. |
posleg |
1 for caption in the left upper corner, |
boxleg |
Puts frame in legend (default = TRUE). |
size |
Size of the points in the graphs. |
grid |
Put grid on graphs (default = TRUE). |
color |
Colored graphics (default = TRUE). |
groupscolor |
Vector with the colors of the groups. |
namarr |
Puts the points names in the cloud around the centroid in the graph corresponding to the global analysis of the Individuals and Variables (default = FALSE). |
linlab |
Vector with the labels for the observations, if not set, assumes the default text. |
savptc |
Saves graphics images to files (default = FALSE). |
width |
Graphics images width when savptc = TRUE (defaul = 3236). |
height |
Graphics images height when savptc = TRUE (default = 2000). |
res |
Nominal resolution in ppi of the graphics images when savptc = TRUE (default = 300). |
casc |
Cascade effect in the presentation of the graphics (default = TRUE). |
Value
Returns several graphs.
Author(s)
Paulo Cesar Ossani
Marcelo Angelo Cirillo
See Also
Examples
data(DataMix) # set of mixed data
data <- DataMix[,2:ncol(DataMix)]
rownames(data) <- DataMix[1:nrow(DataMix),1]
group.names = c("Grade Cafes/Work", "Formation/Dedication", "Coffees")
mf <- MFA(data, c(2,2,2), typegroups = c("n","c","f"), group.names) # performs MFA
tit <- c("Scree-Plot","Observations","Observations/Variables",
"Correlation Circle","Inertia of the Variable Groups")
Plot.MFA(MFA = mf, titles = tit, xlabel = NA, ylabel = NA,
posleg = 2, boxleg = FALSE, color = TRUE,
groupscolor = c("blue3","red","goldenrod3"),
namarr = FALSE, linlab = NA, savptc = FALSE,
width = 3236, height = 2000, res = 300,
casc = TRUE) # plotting several graphs on the screen
Plot.MFA(MFA = mf, titles = tit, xlabel = NA, ylabel = NA,
posleg = 2, boxleg = FALSE, color = TRUE,
namarr = FALSE, linlab = rep("A?",10),
savptc = FALSE, width = 3236, height = 2000,
res = 300, casc = TRUE) # plotting several graphs on the screen