我正在尝试将文本添加到使用基本R函数构建的镶嵌图中的各个图块。但是,我无法确定每个中心区块的坐标。
不,我需要将其限制为 mosaicplot 功能,并且不想使用vcd包。下面的代码演示了基于应该去哪里的知识添加文本。我如何得出这些坐标?
require(stats)
attach(Titanic)
mosaicplot(~ Sex + Survived, data = Titanic)
text( .4,.6, "where to get this number ?",col = "red", cex = 2)
text( .4,.1, "and how to find coordinates ?",col = "blue", cex = 1.5)