CorrAnGraph(SimultAnR)
CorrAnGraph()所属R语言包:SimultAnR
Graph of Correspondence Analysis
对应分析图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Graphical display of correspondence analysis results in two dimensions.
对应分析结果的图形显示在两个方面。
用法----------Usage----------
CorrAnGraph(input, s1 = 1, s2 = 2, screen = TRUE)
参数----------Arguments----------
参数:input
The output of the correspondence analysis
的输出的对应分析
参数:s1
Dimension to plot on horizontal axis
水平轴尺寸绘制
参数:s2
Dimension to plot on vertical axis
垂直轴尺寸绘制
参数:screen
TRUE (all the graphs on screen) or FALSE (graphs in a file)
TRUE(在屏幕上的所有图表)或FALSE(在一个文件中的图表)
Details
详细信息----------Details----------
The parameters s1 = 1 and s2 = 2 indicate that the graph is given for the first two dimensions. A plot of e.g. the second and the third dimensions is obtained by setting s1 = 2 and s2 = 3. Notice that in this case the argument nd of the CorrAn function must be at least 3. If there are supplementary elements in the analysis, the CorrAnGraph function provides two graphical outputs, one for the active elements and the second one for both active and supplementary elements.
参数s1 = 1和s2 = 2该图给出了前两个维度。一块例如通过设置s1 = 2和s2 = 3,得到第二和第三尺寸。请注意,在这种情况下的参数ndCorrAn函数必须至少为3个。如果有补充的元素分析,CorrAnGraph函数提供了两个图形输出,一个是有源元件和第二个主动和补充的元素。
(作者)----------Author(s)----------
Amaya Zarraga, Beatriz Goitisolo
参见----------See Also----------
CorrAn, CorrAnSummary.
CorrAn,CorrAnSummary。
实例----------Examples----------
data(shoplifting)
dataCA <- shoplifting[, 1:9]
CorrAn.out <- CorrAn(data=dataCA)
### Graphs on screen[##图在屏幕上]
CorrAnGraph(CorrAn.out, s1=1, s2=2, screen=TRUE)
### Graph on a pdf file[##走势图上的PDF文件]
pdf('CAGr.pdf',paper="a4r",width=12, height=9)
CorrAnGraph(CorrAn.out, s1=1, s2=2, screen=FALSE)
dev.off()
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|