Answers for "r ylab font size"

R
0

how to change the font of the xlab in plot in r

plot(x,main="Title",xlab="xlabel",ylab="ylabel",sub="subtitle",
	 cex.lab=1.5, cex.axis=1.5, cex.main=1.5, cex.sub=1.5)
Posted by: Guest on August-25-2020
0

text size in plots in r

text(x=10, y=10, 'text here', cex=2)
# the normal cex size is 1
Posted by: Guest on December-17-2020

Browse Popular Code Answers by Language