- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to change the position of the title of a plot which is created using plot function 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
- Related Articles
- How to change the title of a graph to italic created by using plot function in R?
- How to change the background color of a plot created by using plot function in R?
- How to change the color and size of the axes labels of a plot created by using plot function in R?
- How to write the plot title in multiple lines using plot function in R?
- How to put the plot title inside the plot using ggplot2 in R?
- How to reduce the size of the area covered by legend in R for a plot created by using plot function?
- How to change the Y-axis title in base R plot?
- How to change the angle of annotated text in plot created by using ggplot2 in R?
- How to change the position of X-axis in base R plot?
- How to change the axes labels using plot function in R?
- How to change the thickness of the borders of bars in bar plot created by using ggplot2 in R?
- How to add a mathematical expression in axis label in a plot created by using plot function in R?
- How to remove the border of the legend of a chart created by plot function in R?
- How to change the color of line of a plot created for an xts object in R?
- How to represent the legend in a plot created by using plot function with colored straight lines or stars in R?

Advertisements