Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 R 的 lattice 包创建密度图。x 轴具有对数刻度。最小的例子:
densityplot( ~ mpg, data=mtcars, scales=list(x=list(log=TRUE)))
是否可以在主要刻度之间放置次要刻度线?在 xyplot 中可以使用xscale.components=xscale.components.log10ticks,但这不适用于密度图或直方图。
xscale.components=xscale.components.log10ticks
我发现这需要
library("lattice") library("latticeExtra")
现在xscale.components=xscale.components.log10ticks有效(对于我认为的所有格子图)。我不知道这latticeExtra是需要的。
latticeExtra