I have used "text.font = 4", but that did not work. Any ideas on how to do this in base R?
Thanks!
It is not clear what part of the text you want to change, so I will just demonstrate how to change the various kinds of text.
You can change the labels on the axis tick marks with font.axis
font.axis
hist(iris[,4], font.axis=4)
You can change the labels on the axis with font.lab
font.lab
hist(iris[,4], font.lab=4)
You can change the main title with font.main
font.main
hist(iris[,4], font.main=4)
It is not clear what part of the text you want to change, so I will just demonstrate how to change the various kinds of text.
You can change the labels on the axis tick marks with
font.axis
You can change the labels on the axis with
font.lab
You can change the main title with
font.main