1

我需要使用 R 的 lattice 包创建密度图。x 轴具有对数刻度。最小的例子:

densityplot( ~ mpg, data=mtcars, scales=list(x=list(log=TRUE)))

在此处输入图像描述

是否可以在主要刻度之间放置次要刻度线?在 xyplot 中可以使用xscale.components=xscale.components.log10ticks,但这不适用于密度图或直方图。

4

1 回答 1

0

我发现这需要

library("lattice")
library("latticeExtra")

现在xscale.components=xscale.components.log10ticks有效(对于我认为的所有格子图)。我不知道这latticeExtra是需要的。

于 2012-07-19T14:01:03.450 回答