4

我使用 R 的 lattice 包制作了点图和小提琴图。点图对每个因子值都有网格线,以便更容易找到相应的点。

是否可以在不显示此类线条的格子小提琴图中产生此类线条?

在我的情况下,数据分布在更广泛的范围内,因此有时更难找到因子的相应值(因为对于因子的某些值,小提琴看起来更像一个点而不是小提琴)。

这是使用内置数据框 mtcars 的点图(具有连接点的垂直线)和小提琴图(其中“小提琴”未以图形方式与因子的值连接)的最小示例:

library("lattice")
dotplot( mpg ~ as.factor( cyl ), data=mtcars )
bwplot( mpg ~ as.factor(cyl), data=mtcars, panel = function( ..., box.ratio ) { panel.violin( ..., box.ratio ) } )
4

1 回答 1

3

这应该在小提琴图后面放置灰线:

bwplot( mpg ~ as.factor(cyl), data=mtcars, 
  panel = function(x, y, ..., box.ratio ) {
    panel.abline(v = x, col = "gray")
    panel.violin(x, y, ..., box.ratio ) 
  } )

竖线小提琴图

于 2012-07-02T18:46:49.033 回答