문제

I couldn't find a way to reduce the font size of the numbers inside the venn diagram plot. Here are the commands that i have used to produce the plot.

library("limma")
tissue_ven <- vennCounts(tissue_all)
vennDiagram(tissue_ven, names = c("INTERNODE", "LEAF", "ROOT", "SILIQUE", "SEEDLING"), cex = 1, lwd = 1, circle.col= " blue", counts.col="red")

Thanks in advance for help. enter image description here

도움이 되었습니까?

해결책

you could set cex argument to 0.5 for example, but this will change size of all text elements. I don't see a way to change specific text elements separately without customizing vennDiagram function itself

다른 팁

Use the cex=c() to change the sizes corresponding to each of the names

names = c("INTERNODE", "LEAF", "ROOT", "SILIQUE", "SEEDLING"), cex=c(1,5,4,2,1), lwd = 1.....

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top