所需示例:将 arrow() 与 ggplot2 一起使用
我想创建一个 geom_path() ,它的箭头指向路径中的下一个位置。
我可以毫无问题地获取绘图路径,例如:
df <- (x=1:12, y=20:31, z=1:12)
p <- ggplot(df, aes(x=x, y=y))
p + geom_point() + geom_path()
现在我想要做的是绘制从路径中的一个元素到下一个元素的指向箭头。
如果您能告诉我如何平滑从路径中的一个元素到下一个元素的线条,请加分。
I'd like to create a geom_path() that has arrows pointing towards the next location in the path.
I can get the path to plot, without issue, for example:
df <- (x=1:12, y=20:31, z=1:12)
p <- ggplot(df, aes(x=x, y=y))
p + geom_point() + geom_path()
Now what I'd like to be able to do is plot that point arrows from one element in the path to the next.
Extra marks if you could tell me how to smooth the lines from one element in the path to the next.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
geom_segment
有一个arrow
参数。这是一个简短的示例:arrow()< 需要
library(grid)
/code> 函数,请参阅此处。geom_segment
has anarrow
argument. Here's a short example:library(grid)
is needed forarrow()
function, see here.