
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
Create Gridlines Matching Y-Axis Values in R Plot
When we create a plot in R and draw gridlines then the gridlines are drawn on the basis of the values provided inside the grid function, therefore, it may or may not match with the Y-axis labels. But it can be done, we just need to set the values inside the grid function to NULL.
Example
Consider the below plot −
x<-rnorm(10,1) y<-rnorm(10,2) plot(x,y) grid(5,5,lty=5)
Output
Creating the plot with gridlines that matches with Y-axis labels −
Example
plot(x,y) grid(NULL,NULL,lty=5)
Output
Advertisements