我试图用ggplot2
. 这是我的初始代码
nucmer_s1 <- ggarrange(eight_uniform, ten_uniform, twelve_uniform, fourteen_uniform, sixteen_uniform,
ncol=3, nrow=2, common.legend = TRUE, legend="bottom")
收到此错误
plot$scales 中的错误:$ 运算符对原子向量无效
然后。
annotate_figure(nucmer_s1,
top = text_grob("Genomas validados con distribución de datos equilibrada",
color = "black", face = "bold", size = 12))
但是我获得了图形 但我需要在每个情节中添加一个标题所以我改为这个
nucmer_s1 <-grid.arrange(
eight_uniform + ggtitle("8 genomas"),
ten_uniform + ggtitle("10 genomas"),
twelve_uniform + ggtitle("12 genomas"),
fourteen_uniform + ggtitle("14 genomas"),
sixteen_uniform + ggtitle("16 genomas"),
ncol=3, nrow=2, common.legend = TRUE, legend="bottom")
但我得到了
gList 中的错误(list(grobs = list(list(x = 0.5,y = 0.5,width = 1,height = 1,:
“gList”中只允许“grobs”)
Además:警告消息:
1:在 grob$wrapvp < - vp : Realizando coercion de LHD a una lista
2: In grob$wrapvp <- vp : Realizando coercion de LHD a una lista
所以我删除了这个common.legend
部分并得到了这个情节
有没有办法在不使用的情况下在每个带有灰色框的图中放置标题
facet_grid
(因为我在数据中没有该信息)?和有没有办法将图例放在多图的空白处?
非常感谢您的帮助