assocplot
位於 graphics
包(package)。 說明
生成 Cohen-Friendly 關聯圖,指示二維列聯表中行和列獨立性的偏差。
用法
assocplot(x, col = c("black", "red"), space = 0.3,
main = NULL, xlab = NULL, ylab = NULL)
參數
x |
矩陣形式的二維列聯表。 |
col |
長度為 2 的字符向量,分別給出用於繪製正和負 Pearson 殘差的顏色。 |
space |
每個矩形之間留下的空間量(作為平均矩形寬度和高度的一部分)。 |
main |
情節的總體標題。 |
xlab |
x 軸的標簽。默認為 |
ylab |
y 軸的標簽。默認為 |
細節
對於雙向列聯表,單元格 col
第一個元素指定的顏色著色,默認為黑色;否則,該框會落在基線以下,並以 col
的第二個元素指定的顏色著色(默認為紅色)。 對 Pearson 的簽名貢獻為 ,其中 和 是與單元格對應的觀察到的和預期的計數。在 Cohen-Friendly 關聯圖中,每個單元格由一個矩形表示,該矩形的(帶符號)高度與 成正比,寬度與 成正比,因此框的麵積與觀察到的和預期的差異成正比頻率。每行中的矩形相對於指示獨立性的基線定位( )。如果觀察到的單元格頻率大於預期頻率,則該框會上升到基線以上,並以
貢獻包 vcd
中的函數 assoc
提供了在網格圖形係統中編寫的關聯圖的更靈活和可擴展的實現(Meyer、Zeileis 和 Hornik,2006)。
例子
## Aggregate over sex:
x <- marginSums(HairEyeColor, c(1, 2))
x
assocplot(x, main = "Relation between hair and eye color")
參考
Cohen, A. (1980), On the graphical display of the significant components in a two-way contingency table. Communications in Statistics—Theory and Methods, 9, 1025-1041. doi:10.1080/03610928008827940.
Friendly, M. (1992), Graphical methods for categorical data. SAS User Group International Conference Proceedings, 17, 190-200. http://datavis.ca/papers/sugi/sugi17.pdf
Meyer, D., Zeileis, A., and Hornik, K. (2006)
The strucplot Framework: Visualizing Multi-Way Contingency Tables with
vcd
.
Journal of Statistical Software, 17(3), 1-48.
doi:10.18637/jss.v017.i03.
也可以看看
相關用法
- R arrows 將箭頭添加到繪圖中
- R axTicks 計算軸刻度線位置
- R abline 將直線添加到繪圖中
- R axis 將軸添加到繪圖中
- R axis.POSIXct 日期和日期時間繪圖函數
- R legend 將圖例添加到繪圖中
- R barplot 條形圖
- R plot.histogram 繪製直方圖
- R points 向繪圖添加點
- R stem 莖葉圖
- R mtext 將文本寫入繪圖的邊距
- R contour 顯示輪廓
- R pairs 散點圖矩陣
- R stars 星圖(蜘蛛圖/雷達圖)和線段圖
- R box 在地塊周圍畫一個方框
- R coplot 調節圖
- R smoothScatter 具有平滑密度顏色表示的散點圖
- R mosaicplot 馬賽克圖
- R bxp 從摘要中繪製箱線圖
- R plot.raster 繪製光柵圖像
- R curve 繪製函數圖
- R plot.factor 繪製因子變量
- R sunflowerplot 製作向日葵散點圖
- R plot.table 表對象的繪圖方法
- R units 圖形單位
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Association Plots。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。