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 の格子パッケージを使用して密度プロットを作成する必要があります。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