fourfoldplot
位于 graphics
包(package)。 说明
在当前图形设备上创建 2 x 2 by 列联表的四重显示,允许目视检查一个或多个总体(层)中两个二分变量之间的关联。
用法
fourfoldplot(x, color = c("#99CCFF", "#6699CC"),
conf.level = 0.95,
std = c("margins", "ind.max", "all.max"),
margin = c(1, 2), space = 0.2, main = NULL,
mfrow = NULL, mfcol = NULL)
参数
x |
数组形式的 2 x 2 by 列联表,或者如果 为 1,则为 2 x 2 矩阵。 |
color |
长度为 2 的向量,指定每个 2 x 2 表的较小和较大对角线使用的颜色。 |
conf.level |
用于比值比置信环的置信水平。必须是小于 1 的单个非负数;如果设置为 0,则抑制置信环。 |
std |
指定如何标准化表格的字符串。必须匹配 |
margin |
一个数值向量,其边距相等。必须是 |
space |
用于行和列标签的空间量(作为四分之一圆最大半径的一部分)。 |
main |
四重标题的字符串。 |
mfrow |
|
mfcol |
|
细节
四重显示设计用于显示 2 x 2 by 表。
经过适当的标准化,每个 2 x 2 表的小区频率 显示为四分之一圆,其半径与 成正比,因此其面积与小区频率成正比。二进制行变量和列变量之间的关联(优势比不等于 1)由一个方向上对角相对的单元格的大小与另一方向上的单元格大小不同的趋势来表示;颜色用于显示这个方向。比值比的置信环允许对无关联的无效值进行视觉测试;当且仅当观察到的计数与原假设一致时,相邻象限的环才会重叠。
通常,数字 对应于分层变量的级别数,并且有趣的是查看跨层关联是否是同质的。四重显示使关联模式可视化。请注意,单个比值比的置信环不会针对多重测试进行调整。
例子
## Use the Berkeley admission data as in Friendly (1995).
x <- aperm(UCBAdmissions, c(2, 1, 3))
dimnames(x)[[2]] <- c("Yes", "No")
names(dimnames(x)) <- c("Sex", "Admit?", "Department")
stats::ftable(x)
## Fourfold display of data aggregated over departments, with
## frequencies standardized to equate the margins for admission
## and sex.
## Figure 1 in Friendly (1994).
fourfoldplot(marginSums(x, c(1, 2)))
## Fourfold display of x, with frequencies in each table
## standardized to equate the margins for admission and sex.
## Figure 2 in Friendly (1994).
fourfoldplot(x)
## Fourfold display of x, with frequencies in each table
## standardized to equate the margins for admission. but not
## for sex.
## Figure 3 in Friendly (1994).
fourfoldplot(x, margin = 2)
参考
Friendly, M. (1994). A fourfold display for 2 by 2 by http://datavis.ca/papers/4fold/4fold.pdf
tables. Technical Report 217, York University, Psychology Department.也可以看看
相关用法
- R frame 创建/开始新的图框
- R filled.contour 水平(等高线)图
- R legend 将图例添加到绘图中
- R barplot 条形图
- R plot.histogram 绘制直方图
- R points 向绘图添加点
- R stem 茎叶图
- R mtext 将文本写入绘图的边距
- R arrows 将箭头添加到绘图中
- R contour 显示轮廓
- R pairs 散点图矩阵
- R stars 星图(蜘蛛图/雷达图)和线段图
- R box 在地块周围画一个方框
- R coplot 调节图
- R smoothScatter 具有平滑密度颜色表示的散点图
- R mosaicplot 马赛克图
- R bxp 从摘要中绘制箱线图
- R plot.raster 绘制光栅图像
- R axTicks 计算轴刻度线位置
- R curve 绘制函数图
- R plot.factor 绘制因子变量
- R sunflowerplot 制作向日葵散点图
- R plot.table 表对象的绘图方法
- R units 图形单位
- R identify 识别散点图中的点
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Fourfold Plots。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。