doubledecker(vcd)
doubledecker()所属R语言包:vcd
Doubledecker Plot
Doubledecker图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function creates a doubledecker plot visualizing a classification rule.
这个函数创建了可视化的分类规则是双层图。
用法----------Usage----------
## S3 method for class 'formula'[类formula的方法]
doubledecker(formula, data = NULL, ..., main = NULL)
## Default S3 method:[默认方法]
doubledecker(x, depvar = length(dim(x)),
margins = c(1,4, length(dim(x)) + 1, 1),
gp = gpar(fill = rev(gray.colors(tail(dim(x), 1)))),
labeling = labeling_doubledecker,
spacing = spacing_highlighting,
main = NULL, keep_aspect_ratio = FALSE, ...)
参数----------Arguments----------
参数:formula
a formula specifying the variables used to create a contingency table from data. The dependent variable is used last for splitting.
公式指定使用的变量,创建一个列联表data。因变量是用最后的分裂。
参数:data
either a data frame, or an object of class "table" or "ftable".
一个数据框,或对象类"table"或"ftable"的。
参数:x
a contingency table in array form, with optional category labels specified in the dimnames(x) attribute.
联表数组的形式,dimnames(x)属性中指定的可选的分类标签。
参数:depvar
dimension index or character string specifying the dependent variable. That will be sorted last in the table.
指定因变量的维数索引或字符串。表中的最后,将排序条件。
参数:margins
margins of the plot. Note that by default, all factor names (except the last one) and their levels are visualized as a block under the plot.
利润的图。请注意,默认情况下,所有因子名称(除了最后一个),他们的水平可视块下的图。
参数:gp
object of class "gpar" used for the tiles of the last variable.
类的对象"gpar"用于瓷砖的最后一个变量。
参数:labeling
labeling function or corresponding generating generating function (see strucplot for details).
标签功能或相应产生的生成函数(见strucplot)。
参数:spacing
spacing object, spacing function or corresponding generating function (see strucplot for details).
对象间距,间距功能或相应的生成函数(见strucplot详情)。
参数:main
either a logical, or a character string used for plotting the main title. If main is TRUE, the name of the data object is used.
无论是一个逻辑,或字符串,用于绘制的主标题。 main如果是TRUE“的名称data对象使用。
参数:keep_aspect_ratio
logical indicating whether the aspect ratio should be maintained or not.
逻辑表示的纵横比是否应保持或不。
参数:...
Further parameters passed to mosaic.
其他参数传递给mosaic。
Details
详细信息----------Details----------
Doubledecker plots visualize the the dependence of one categorical (typically binary) variable on further categorical variables. Formally, they are mosaic plots with vertical splits for all dimensions (antecedents) except the last one, which represents the dependent variable (consequent). The last variable is visualized by horizontal splits, no space between the tiles, and separate colors for the levels.
Doubledecker图可视化的一个分类(通常是二进制)进一步分类变量的变量的依赖。从形式上看,他们是镶嵌图与垂直分割尺寸(前项),除了最后一个,它代表了随之而来的因变量()。最后一个变量是可视化的水平分割,之间没有空格的瓷砖,和不同的颜色的层次。
值----------Value----------
The "structable" visualized is returned invisibly.
"structable"返回的可视化是不可见的。
(作者)----------Author(s)----------
David Meyer <a href="mailtoavid.Meyer@R-project.org">David.Meyer@R-project.org</a>
参考文献----------References----------
Generalized odds ratios for visual modeling. Journal of Computational and Graphical Statistics, 10, 4, 628–640.
The strucplot framework: Visualizing multi-way contingency tables with <code>vcd</code>. Journal of Statistical Software, 17(3), 1-48. URL http://www.jstatsoft.org/v17/i03/ and available as <code>vignette("strucplot")</code>.
参见----------See Also----------
strucplot, mosaic
strucplot,mosaic
实例----------Examples----------
data("Titanic")
doubledecker(Titanic)
doubledecker(Titanic, depvar = "Survived")
doubledecker(Survived ~ ., data = Titanic)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|