我想知道是否有人知道为什么会这样。这是代码和屏幕截图的快速示例。
library(ggplot2)
iris$randomratio <- iris$Sepal.Length/iris$Sepal.Width
plot_iris <- ggplot(iris, aes(x=Sepal.Length, y=Sepal.Width, color = Species)) +
geom_point() +
theme_light() +
ggrepel::geom_text_repel(data=subset(iris, randomratio > 2.7),
aes(Sepal.Length, Sepal.Width, label= Species))
plot_iris
cowplot::plot_grid(plot_iris, plot_iris, label = c('A', 'B'))
现在,当我在 RMD 文件中执行此操作时,我得到了我想要的标记点(对)但是当我尝试在 Rstudio 笔记本输出中执行此操作时,我得到以下信息:
注意它不适用于 ggplot 或 cowplot。使用 cowplot 它也不适用于常规文件。
有谁知道我该如何解决这个问题?