它是一个 ggplot 对象。您想要更改大小的对象可以使用
geom_text()
功能进行修改。但是,要使其起作用,您必须修改包附带的源函数plot.cooccur()
。
plot.cooccur()
函数的脚本。复制所有内容,然后将其放入环境中的新 R 脚本中。 该函数的 GitHub 链接。p <- p + geom_text(data=dfids,aes(label=X1),hjust=1,vjust=0,angle = -22.5)#, color="dark gray", size = 15)
plot.coocur()
。library(cooccur)
data(finches)
cooccur.finches <- cooccur(finches,
type = "spp_site",
thresh = TRUE,
spp_names = TRUE)
class(cooccur.finches)
x <- plot.cooccur(cooccur.finches)
x
# It also works with plot(), but it's better this way to not interfere with other dependencies
希望有帮助。
PS:正如 MrFlick 提到的,如果您下次提供可重现的示例,其他人会更容易帮助您。