Unfortunately, the author didn't use defined themes inside the function. In this post How to change default font size in R chart @Gregor Thomas give a nice answer. What you can do is create your own theme
like in ggplot
. Here I use the finches
dataset as an example:
library(cooccur)
data("finches")
cooccur.finches <- cooccur(mat=finches,
type="spp_site",
thresh=TRUE,
spp_names=TRUE)
summary(cooccur.finches)
plot(cooccur.finches,cex.sub = 0.1)
p <- plot(cooccur.finches)
p + theme_bw(base_size = 28) +
theme(axis.text = element_blank(),
axis.ticks = element_blank(),
plot.title = element_text(vjust = -4, face = "bold"),
panel.background = element_rect(fill = "white", colour = "white"),
panel.grid = element_blank(),
legend.position = c(0.9, 0.5))
Output:

I would suggest playing around with the theme
options from ggplot
. Here is a good post which can help you for sure: Changing font size and direction of axes text in ggplot2