As I'm learning R programming, I was trying to change font type in scatterplot.
For e.g., let say I want to do the following:
Q) For the Scatter plot with cars, change the font type, font size and color of the labels main, lab, and axis
I tried doing as below but could not complete it:
plot(cars$speed, cars$distance, font="New times Roman", cex.lab=3,
cex.axis=3, cex.main=5, col="brown", main="Title", xlab="speed", ylab="distance", font=10)
Please help