I want to increase the font size of those percentage values inside the graph. For example, those 56%, 19%, 25%.
Current code I use
Q5 <- likert(tmp)
plot(Q5, ordered=FALSE) + theme(aspect.ratio=0.3, legend.text =element_text(color="black",size=8), axis.text=element_text(color="black",size=12))
I tried to add cex=5 inside plot function, but no effect at all.