log10 スケールでセグメントに注釈を付けようとしているときに、ggplot でかなり紛らわしい機能を見つけました。次のコードは、以下のプロットを生成します。
library(ggplot2)
dat <- data.frame(x = x <- 1:1000, y = log(x))
ggplot(dat, aes(x = x, y = y)) +
geom_line(size = 2) + scale_x_log10() +
annotate("segment", x = 0, xend = log10(100), y = log(100), yend = log(100), linetype = 2) +
annotate("segment", x = log10(100), xend = log10(100), y = 0, yend = log(100), linetype = 2)
これは私が求めているものです:
ggplot(dat, aes(x = x, y = y)) +
geom_line(size = 2) + scale_x_log10() +
annotate("segment", x = 0, xend = log10(100), y = log(100), yend = log(100), linetype = 2) +
annotate("segment", x = 100, xend = log10(100), y = 0, yend = log(100), linetype = 2)
つまり、x 軸上のセグメントの終点を log10 変換する必要がありますが、開始点は変換しません。この行動には論理的な説明がありますか? 変換が行われることは理解してaes()
いますが、この場合、x 軸の変換は均一 (つまり、log10) である必要があります。
私は取り組んでいます:
R version 3.0.0 (2013-04-03)
Platform: x86_64-w64-mingw32/x64 (64-bit)
ggplot2_0.9.3.1