0
密度プロットの下に線分を描きたいので、距離を一定のピクセル数にしたいと思います。これは可能ですか?私は距離をハードコードする方法を知っています。例えば:相対yを使用して密度プロットの下の線分を描画しますか?
set.seed(40816)
library(ggplot2)
df.plot <- data.frame(x = rnorm(100, 0, 1))
ggplot(df.plot, aes(x = x)) + geom_density() +
geom_segment(aes(x = -1, y = -0.05, xend = 1, yend = -0.05),
linetype = "longdash")
が生成:
しかし
df.plot <- data.frame(x = rnorm(100, 0, 4))
ggplot(df.plot, aes(x = x)) + geom_density() +
geom_segment(aes(x = -1, y = -0.025, xend = 1, yend = -0.025),
linetype = "longdash")
ははるか遠く密度
、annotation_grobを使用することができます!セグメントを少し低くする方法を説明できますか? – Ignacio
'pos = unit(2、" mm ")'を好きなように調整してください。 – baptiste
注釈がプロットパネルの外にある場合は注釈が消えるかもしれないので、手動でexpand_limitsを調整する必要があります。 – baptiste