mosaic() - vcd包的功能:在单元格中添加文本时出错

时间:2015-04-08 13:46:36

标签: r categorical-data mosaic mosaic-plot

我使用mosaic包中的vcd函数创建了一个马赛克图。现在我想使用labeling_cells添加一些注释。不幸的是,我收到了一个错误。问题可能是它不是标准Titanic示例......

library("grid"); library("vcd")
dataset <- read.table("http://bit.ly/1aJTI1C")

# prepare data for plot as a "Structured Contingency Table"
data1 <- structable(dauer ~ groesse + ort, dataset) 

# basic plot
mosaic(data1,
       # separate the two elements of the plot  
       split_vertical = c(T, T, F),

       # put the names in the right places and adds boxes 
       labeling_args = list(tl_labels = TRUE,
                            tl_varnames = FALSE,
                            boxes = TRUE),
       # grip remains open 
       pop=FALSE 
       )

enter image description here

# structure that matches plot, but it does not help
#match<-t(data1)

# try to add labels 
labeling_cells(text = data1, clip = FALSE)(data1)

这导致:

# Error in ifelse(abbreviate_varnames, sapply(seq_along(dn), function(i) abbreviate(dn[i],  : 
#   replacement has length zero
# In addition: Warning message:
# In rep(no, length.out = length(ans)) :
#  'x' is NULL so the result will be NULL

我遇到的另一个问题是盒子不适合标签。如果您有提示,请告诉我!

这是我的第一个问题,请原谅潜在的错误!

非常感谢!

2 个答案:

答案 0 :(得分:2)

修复了vcd 1.4-4中的上游,但请注意,您只需使用

即可
mosaic(data1, labeling = labeling_values)

答案 1 :(得分:1)

是的,这很令人困惑,应该在labeling_cells()修复。出于某种原因,标签中的数据应该是常规table,而不是structable。我将与大卫一起提出这个问题,他是mosaic()和软件包维护者的主要作者。

如果您知道它,那么解决它很容易:

labeling_cells(text = as.table(data1), clip = FALSE)(as.table(data1))

mosaic labeling