- 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 plot the X-axis labels on the upper-side of the plot in R?
By default, the X−axis labels are plotted on the bottom−axis of the plot and that is referred to as the first axis of axis 1, the second axis is the axis on the left−side, the third axis is the axis on the upper side of the plot, and the fourth axis is on the right−side of the plot. If we want to plot the X−axis labels on the upper−side of the plot then we can use xaxt="n" inside the plot function then define axis for upper−side using axis(3) with semi−colon.
Example1
x<−1:10 plot(x,xaxt="n");axis(3)
Output
Example2
y<−rnorm(10,1,0.8) plot(y,xaxt="n");axis(3)
Output
Example3
y<−rnorm(10,1,0.8) z<−rpois(10,5) plot(y,z,xaxt="n");axis(3)
Output
- Related Articles
- How to display X-axis labels inside the plot in base R?
- How to X-axis labels to the top of the plot using ggplot2 in R?
- How to display X-axis labels with dash in base R plot?
- How to create the stacked bar plot using ggplot2 in R with labels on the plot?
- How to display raise to the power on X-axis in base R plot?
- How to change the position of X-axis in base R plot?
- How to rotate X-axis tick labels in Pandas bar plot?
- How to create a plot with tick marks between X-axis labels in base R?
- How to display tick marks on upper as well as right side of the plot using ggplot2 in R?
- How to create a plot with reversed Y-axis labels in base R?
- How to change the adjustment of the plot title using ggplot2 to align it above the Y-axis labels in R?
- How to change the axes labels using plot function in R?
- How to remove or hide X-axis labels from a Seaborn / Matplotlib plot?
- How to create a plot in base R with dates sequence on X-axis?
- Matplotlib – How to plot the FFT of signal with correct frequencies on the X-axis?

Advertisements