
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 Title Position of Plot in R
When we create a plot using plot function, the title of the plot appears on top of the plot while using main argument. If we use title function to create the title of the plot then we can adjust its position in many different ways such as any position between below and top border of the plot.
Examples
x <-1:10 y <-10:1 plot(x,y,main="Scatterplot")
Output
Example
plot(x,y) title("Scatterplot",line=-1)
Output
Example
plot(x,y) title("Scatterplot",line=-4)
Output
Example
plot(x,y) title("Scatterplot",line=-18)
Output
Example
plot(x,y) title("Scatterplot",line=-18,adj=0.1)
Output
Advertisements