gpt4 book ai didi

r - 如何制作一串ggplots并在它们之间绘制箭头?

转载 作者:行者123 更新时间:2023-12-01 09:20:10 26 4
gpt4 key购买 nike

对于一个项目,我需要绘制一些图并在它们之间放置箭头作为序列的指示。我想知道我是否可以用 ggplot 做到这一点。是否可以用 ggplot2 绘制一个干净的大箭头并将其添加到最终的多图上?

作为示例,我使用此代码绘制绘图:

library(ggplot2)
ggplot(diamonds, aes(clarity, fill=cut)) + geom_bar()

对于这个项目,我需要绘制三个这样的图。结果应该是这样的:

enter image description here

有没有人有办法解决吗?提前谢谢了!

最佳答案

这是一种方法:

library(ggplot2)
library(gridExtra)
library(grid)
library(png)
download.file("https://www.wpclipart.com/signs_symbol/arrows/arrow_comic/Arrow_comic_right_gray.png",
tf <- tempfile(fileext = ".png"),
mode="wb")
arrow <- rasterGrob(readPNG(tf))
p <- ggplot(diamonds, aes(clarity, fill=cut)) +
geom_bar()
grid.arrange(p + guides(fill = "none"),
arrow,
p + guides(fill = "none"),
arrow,
p,
ncol=5, widths=c(2/10, 1.75/10, 2/10, 1.75/10, 2.5/10))

enter image description here

关于r - 如何制作一串ggplots并在它们之间绘制箭头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34744655/

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