
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Change Color and Size of Axes Labels in R Plot
The default size of axes labels created by using plot function does not seem to be large enough and also it does not look appealing. Therefore, we might want to change their size and color because the appearance of a plot matters a lot. This can be done by setting colors with col.lab and size with cex.lab.
Example
> x<-rnorm(10) > y<-rnorm(10,0.5) > plot(x,y)
Output
Changing the color of axes labels and the size of those axes labels −
> plot(x,y,col.lab="blue",cex.lab=2)
Output
> plot(x,y,col.lab="dark blue",cex.lab=3)
Output
Advertisements