ternaryplot(Zelig)
ternaryplot()所属R语言包:Zelig
Ternary diagram
三元相图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Visualizes compositional, 3-dimensional data in an equilateral triangle (from the vcd library, Version 0.1-3.3, Date 2004-04-21), using plot graphics.
可视化在一个等边三角形(从vcd的库,0.1-3.3版本,日期2004-04-21)中的成分,3维的数据,使用积图形。
用法----------Usage----------
ternaryplot(x, scale = 1, dimnames = NULL, dimnames.position = c("corner","edge","none"),
dimnames.color = "black", id = NULL, id.color = "black", coordinates = FALSE,
grid = TRUE, grid.color = "gray", labels = c("inside", "outside", "none"),
labels.color = "darkgray", border = "black", bg = "white", pch = 19, cex = 1,
prop.size = FALSE, col = "red", main = "ternary plot", ...)
参数----------Arguments----------
参数:x
a matrix with three columns.
矩阵有三列。
参数:scale
row sums scale to be used.
行求和规模要使用。
参数:dimnames
dimension labels (defaults to the column names of x).
标注标签(默认为列名的x)。
参数:dimnames.position, dimnames.color
position and color of dimension labels.
维标签的位置和颜色。
参数:id
optional labels to be plotted below the plot symbols. coordinates and id are mutual exclusive.
可选的标签,被绘制在图形的下方符号。 coordinates和id是互斥的。
参数:id.color
color of these labels.
这些标签的颜色。
参数:coordinates
if TRUE, the coordinates of the points are plotted below them. coordinates and id are mutual exclusive.
如果TRUE,点的坐标绘制它们下面。 coordinates和id是互斥的。
参数:grid
if TRUE, a grid is plotted. May optionally be a string indicating the line type (default: "dotted").
如果TRUE,一个网格绘制。可能选择一个字符串,指示线路类型(默认:"dotted")。
参数:grid.color
grid color.
网格颜色。
参数:labels, labels.color
position and color of the grid labels.
网格标签的位置和颜色。
参数:border
color of the triangle border.
颜色三角形的边界。
参数:bg
triangle background.
三角形的背景。
参数:pch
plotting character. Defaults to filled dots.
绘制字符。默认为填充点。
参数:cex
a numerical value giving the amount by which plotting text and symbols should be scaled relative to the default. Ignored for the symbol size if prop.size is not FALSE.
一个数值,绘制文字和符号应扩大相对于默认。 prop.size忽略符号的大小,如果FALSE。
参数:prop.size
if TRUE, the symbol size is plotted proportional to the row sum of the three variables, i.e. represents the weight of the observation.
如果TRUE,符号的大小绘制三个变量的行总和成比例,即表示观察的重量。
参数:col
plotting color.
绘制的颜色。
参数:main
main title.
主标题。
参数:...
additional graphics parameters (see par)
额外的图形参数(见par)
Details
详细信息----------Details----------
A points' coordinates are found by computing the gravity center of mass points using the data entries as weights. Thus, the coordinates of a point P(a,b,c), a + b + c = 1, are: P(b + c/2, c * sqrt(3)/2).
A点的坐标被发现通过计算质点的重心作为权重,使用的数据条目。因此,点P的坐标,(一,二,三),a + b + c = 1,有:P(B + c / 2的角*的sqrt(3)/ 2)。
(作者)----------Author(s)----------
David Meyer<br>
<a href="mailto:david.meyer@ci.tuwien.ac.at">david.meyer@ci.tuwien.ac.at</a>
参考文献----------References----------
Visualizing Categorical Data. SAS Institute, Cary, NC.
参见----------See Also----------
ternarypoints
ternarypoints
实例----------Examples----------
data(mexico)
if (require(VGAM)) {
z.out <- zelig(as.factor(vote88) ~ pristr + othcok + othsocok,
model = "mlogit", data = mexico)
x.out <- setx(z.out)
s.out <- sim(z.out, x = x.out)
ternaryplot(s.out$qi$ev, pch = ".", col = "blue",
main = "1988 Mexican Presidential Election")
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|