gpt4 book ai didi

r - ggplot2 在 R 中注释图层位置

转载 作者:行者123 更新时间:2023-12-04 09:40:27 25 4
gpt4 key购买 nike

在我的情节中,我有图例和文本注释。对于图例,我可以指定
legend.justification=c(1,0), legend.position=c(1,0)
定位相对于绘图区域的位置(例如右上角、左下角)。但是,当我放一个注释层( http://docs.ggplot2.org/0.9.3.1/annotate.html )时,似乎只能指定文本的坐标
annotate("text", x = 8e-7, y = 1e-5, label=data.note, size = 5)
而不是绘图区域的位置(我想将文本放在左下角)。文本的长度 ( label ) 可能因不同的图而异。有没有办法实现这一目标?谢谢!

最佳答案

这是你要找的吗??


set.seed(1)
df <- data.frame(x=rnorm(100),y=rnorm(100))
ggplot(df, aes(x,y)) +geom_point()+
annotate("text",x=min(df$x),y=min(df$y),hjust=.2,label="Text annotation")
hjust=... 可能会有一些实验需要在左下角得到这个。

关于r - ggplot2 在 R 中注释图层位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22488563/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com