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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。