
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 Axis Color in Base R Plot
To change the axis color in base R plot, we can use axis function after creating the plot.
For example if we want to change the color of X-axis to blue then we can use the command given below −
axis(1,col="blue")
If we want to change the color of Y-axis to red then, we can use the command given below −
axis(2,col="blue")
Check out the below example to understand how it works.
Example
To change the axis color in base R plot, use the code given below −
plot(5)
Output
If you execute the above given code, it generates the following output −
To change the axis color in base R plot, add the following code to the above snippet −
plot(5) axis(1,col="red")
Output
If you execute all the above given codes as a single program, it generates the following output −
To change the axis color in base R plot, add the following code to the above snippet −
plot(5) axis(2,col="red")
Output
If you execute all the above given codes as a single program, it generates the following output −