I am confused. What is the right way to increase font size of text in the title, labels and other places of a plot?
For example
x <- rnorm(100) h
In case you want to increase the font of the labels of the histogram when setting labels=TRUE
bp=hist(values, labels = FALSE, main='Histogram', xlab='xlab',ylab='ylab', cex.main=2, cex.lab=2,cex.axis=2) text(x=bp$mids, y=bp$counts, labels=bp$counts ,cex=2,pos=3)